diff options
author | bertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-26 18:26:06 +0000 |
---|---|---|
committer | bertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-26 18:26:06 +0000 |
commit | 1e7d31cc88d28a64a7f94f5c31b942a1f5179370 (patch) | |
tree | a5d1621ca5f8902aaa4f72e6db9ec534bc0efc55 /libmpdemux/http.c | |
parent | 35367b99cc1a50f9e1115aeba4fc99fb54b2799b (diff) | |
download | mpv-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/http.c')
-rw-r--r-- | libmpdemux/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/http.c b/libmpdemux/http.c index 75157fccf0..65c2f7c28d 100644 --- a/libmpdemux/http.c +++ b/libmpdemux/http.c @@ -62,7 +62,7 @@ http_response_append( HTTP_header_t *http_hdr, char *response, int length ) { } int -http_is_header_entired( HTTP_header_t *http_hdr ) { +http_is_header_entire( HTTP_header_t *http_hdr ) { if( http_hdr==NULL ) return -1; if( strstr(http_hdr->buffer, "\r\n\r\n")==NULL ) return 0; |