build: Add missing network headers needed on Linux
This commit is contained in:
parent
399f74e772
commit
4413a65da4
|
@ -7,6 +7,11 @@
|
|||
#include <string>
|
||||
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
// forward declarations
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
namespace frame {
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
namespace frame {
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
typedef struct zrtp_session zrtp_session_t;
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
typedef struct zrtp_session zrtp_session_t;
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
class socket;
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
typedef struct capabilities zrtp_capab_t;
|
||||
|
@ -16,7 +20,7 @@ namespace uvgrtp {
|
|||
};
|
||||
|
||||
namespace zrtp_msg {
|
||||
|
||||
|
||||
class receiver;
|
||||
|
||||
PACK(struct zrtp_hello {
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
class socket;
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
#include "util.hh"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
namespace uvgrtp {
|
||||
|
||||
class socket;
|
||||
|
|
Loading…
Reference in New Issue