summaryrefslogtreecommitdiffstats
path: root/libmpdemux/network.c
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-26 18:26:06 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-26 18:26:06 +0000
commit1e7d31cc88d28a64a7f94f5c31b942a1f5179370 (patch)
treea5d1621ca5f8902aaa4f72e6db9ec534bc0efc55 /libmpdemux/network.c
parent35367b99cc1a50f9e1115aeba4fc99fb54b2799b (diff)
downloadmpv-1e7d31cc88d28a64a7f94f5c31b942a1f5179370.tar.bz2
mpv-1e7d31cc88d28a64a7f94f5c31b942a1f5179370.tar.xz
Added ASF http server streaming (Not mms streaming).
Fixed one bug in the ASF mms streaming. Fixed a typo in http. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2490 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/network.c')
-rw-r--r--libmpdemux/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/network.c b/libmpdemux/network.c
index 45299b8e4d..c80c49376e 100644
--- a/libmpdemux/network.c
+++ b/libmpdemux/network.c
@@ -256,7 +256,7 @@ http_read_response( int fd ) {
printf("Read failed\n");
}
http_response_append( http_hdr, response, i );
- } while( !http_is_header_entired( http_hdr ) );
+ } while( !http_is_header_entire( http_hdr ) );
http_response_parse( http_hdr );
return http_hdr;
}