comparison stream/rtp.h @ 19320:06eef86d21cc

removed some useless includes
author ben
date Fri, 04 Aug 2006 19:38:59 +0000
parents c565b6ac1d2a
children 3f0d00abc073
comparison
equal deleted inserted replaced
19319:c565b6ac1d2a 19320:06eef86d21cc
6 */ 6 */
7 7
8 #ifndef _RTP_H 8 #ifndef _RTP_H
9 #define _RTP_H 9 #define _RTP_H
10 10
11 #include "config.h"
12 #ifndef HAVE_WINSOCK2
13 #include <sys/socket.h>
14 #else
15 #include <winsock2.h>
16 #endif
17
18 int read_rtp_from_server(int fd, char *buffer, int length); 11 int read_rtp_from_server(int fd, char *buffer, int length);
19 12
20 #endif 13 #endif