From 51808638634f608270ca186e7157bf02531fb197 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 10 Dec 2013 15:03:01 +0100 Subject: Fix include for ntoh et al. on windows. --- src/rtp.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/rtp.cc b/src/rtp.cc index 767a506..78674bf 100644 --- a/src/rtp.cc +++ b/src/rtp.cc @@ -28,9 +28,15 @@ #include "rtp.h" #include -#include #include +// For ntoh et al. +#ifdef WIN32 +#include +#else +#include +#endif + RTP::RTP() { memset(&header, 0, sizeof(header)); -- cgit v1.2.3