summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmpdemux/network.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpdemux/network.h b/libmpdemux/network.h
index 39b6bb88dd..f708b5a7d7 100644
--- a/libmpdemux/network.h
+++ b/libmpdemux/network.h
@@ -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