diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-04-27 00:17:46 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-04-27 00:17:46 +0000 |
commit | 0bdacf29d40b11cfd5dd0d13577a4bdc90afdcea (patch) | |
tree | c44c49e8d65c98669e4dd821f6fbac6846bd986f | |
parent | 47b515bf64fefd49911a5277d9688ceb234f2560 (diff) | |
download | ffmpeg-0bdacf29d40b11cfd5dd0d13577a4bdc90afdcea.tar.gz |
use network.h instead network includes
Originally committed as revision 8844 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ffserver.c b/ffserver.c index c34e47a93c..e7b0b7b314 100644 --- a/ffserver.c +++ b/ffserver.c @@ -32,17 +32,13 @@ #include <sys/time.h> #undef time //needed because HAVE_AV_CONFIG_H is defined on top #include <time.h> -#include <sys/types.h> -#include <sys/socket.h> #include <sys/wait.h> -#include <netinet/in.h> -#include <arpa/inet.h> -#include <netdb.h> #include <signal.h> #ifdef HAVE_DLFCN_H #include <dlfcn.h> #endif +#include "network.h" #include "version.h" #include "ffserver.h" #include "random.h" |