From 32d1e1014ff45f4955ee0315b10b81eea117a8c2 Mon Sep 17 00:00:00 2001 From: bertrand Date: Mon, 14 Jan 2002 01:12:44 +0000 Subject: Changed the proxy protocol to http_proxy. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4146 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/asf_streaming.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libmpdemux/asf_streaming.c') diff --git a/libmpdemux/asf_streaming.c b/libmpdemux/asf_streaming.c index b000bd1e4a..3d23b4296c 100644 --- a/libmpdemux/asf_streaming.c +++ b/libmpdemux/asf_streaming.c @@ -63,7 +63,7 @@ asf_streaming_start( stream_t *stream ) { } if( !strncasecmp( proto_s, "http", 4) || !strncasecmp( proto_s, "mms", 3) || - !strncasecmp( proto_s, "proxy", 5) + !strncasecmp( proto_s, "http_proxy", 10) ) { printf("Trying ASF/HTTP...\n"); fd = asf_http_streaming_start( stream ); @@ -398,7 +398,7 @@ asf_http_request(streaming_ctrl_t *streaming_ctrl) { http_set_field( http_hdr, "User-Agent: NSPlayer/4.1.0.3856" ); // Check if we are using a proxy - if( !strcasecmp( url->protocol, "proxy" ) ) { + if( !strcasecmp( url->protocol, "http_proxy" ) ) { server_url = url_new( (url->file)+1 ); if( server_url==NULL ) { printf("Invalid proxy URL\n"); @@ -561,7 +561,7 @@ asf_http_streaming_start( stream_t *stream ) { done = 1; if( fd>0 ) close( fd ); - if( !strcasecmp( url->protocol, "proxy" ) ) { + if( !strcasecmp( url->protocol, "http_proxy" ) ) { if( url->port==0 ) url->port = 8080; } else { if( url->port==0 ) url->port = 80; -- cgit v1.2.3