summaryrefslogtreecommitdiff
path: root/libav/rtsp.c
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2002-11-02 10:35:07 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-11-02 10:35:07 +0000
commit9ddd71fc6063b357344f81a0f704c1d04f584ada (patch)
tree87e9377d16bd2a22727ca6f572ba312f167d258f /libav/rtsp.c
parentbbd8335b69b4960b2a6e830317f189748232c749 (diff)
added BeOS net_server support (R5 network stack), basically the same
problems as with winsock (sockets != fd), and the broken select(). based on older patch by Andrew Bachmann. patch by (François Revol <revol at free dot fr>) Originally committed as revision 1144 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/rtsp.c')
-rw-r--r--libav/rtsp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libav/rtsp.c b/libav/rtsp.c
index acacc5de9c..81b59f8916 100644
--- a/libav/rtsp.c
+++ b/libav/rtsp.c
@@ -21,7 +21,11 @@
#include <sys/time.h>
#include <netinet/in.h>
#include <sys/socket.h>
-#include <arpa/inet.h>
+#ifndef __BEOS__
+# include <arpa/inet.h>
+#else
+# include "barpainet.h"
+#endif
//#define DEBUG