1
mirror of https://github.com/mpv-player/mpv synced 2025-01-20 21:07:29 +01:00

Added a function prototype for reuse outside of network.c

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6456 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
bertrand 2002-06-17 08:18:45 +00:00
parent b2fa5e9868
commit dc7f4052b8

View File

@ -16,6 +16,7 @@
#include <arpa/inet.h>
#include "url.h"
#include "http.h"
#include "stream.h"
#define BUFFER_SIZE 2048
@ -47,4 +48,7 @@ int nop_streaming_seek( int fd, off_t pos, streaming_ctrl_t *stream_ctrl );
int connect2Server(char *host, int port);
int http_send_request(URL_t *url);
HTTP_header_t *http_read_response(int fd);
#endif