diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2007-02-04 17:05:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-04 17:05:44 +0000 |
commit | 42572ef53f5199160ecc3e18bb549caece8b26dc (patch) | |
tree | 5ee26f27b31c2d58edadbbfd39566774487816c2 /libavformat/http.c | |
parent | ac975ac462c0089c123713ac8c2e9300a4c414a7 (diff) | |
download | ffmpeg-42572ef53f5199160ecc3e18bb549caece8b26dc.tar.gz |
move networking #includes into separate file
patch by Ramiro Polla angustia =a= arrozcru =d= no-ip =d= org
Originally committed as revision 7817 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/http.c')
-rw-r--r-- | libavformat/http.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index 63cdb34530..2d8098838f 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -20,11 +20,7 @@ */ #include "avformat.h" #include <unistd.h> -#include <sys/types.h> -#include <sys/socket.h> -#include <netinet/in.h> -#include <arpa/inet.h> -#include <netdb.h> +#include "network.h" #include "base64.h" |