Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed May 2, 2024
1 parent 95263df commit a54aa10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 1 addition & 3 deletions app/telemetry/connection/tcp_connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
#include <winsock2.h>
#include <Ws2tcpip.h> // For InetPton
#include <Windows.h>
#include <unistd.h>
#include <fcntl.h>
#else
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/socket.h>
#endif
#include <unistd.h>
#include <fcntl.h>
#endif

#include <qdebug.h>

Expand Down
4 changes: 4 additions & 0 deletions app/videostreaming/vscommon/udp/UDPReceiver.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
#ifdef __linux__
#include <sys/socket.h>
#include <netinet/in.h>
#else
#include <winsock2.h>
#include <Ws2tcpip.h> // For InetPton
#include <Windows.h>
#endif
#include <unistd.h>
#include <iostream>
Expand Down

0 comments on commit a54aa10

Please sign in to comment.