summaryrefslogtreecommitdiffstats
path: root/libmpdemux/asf_streaming.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-15 19:13:23 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-15 19:13:23 +0000
commit755e127c26dac7beb48f19c2b989d02543afd7ae (patch)
tree411f6a126ada792e263ea481726a23b16f30db69 /libmpdemux/asf_streaming.c
parent38a2fa46fd084eb21a3b348e6f73fabd5d992edc (diff)
downloadmpv-755e127c26dac7beb48f19c2b989d02543afd7ae.tar.bz2
mpv-755e127c26dac7beb48f19c2b989d02543afd7ae.tar.xz
ftp support. The change on connect2Server is needed bcs we need 2
different level of verbosity for control and data connections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10626 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/asf_streaming.c')
-rw-r--r--libmpdemux/asf_streaming.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/asf_streaming.c b/libmpdemux/asf_streaming.c
index 122cbb66e6..8d3886d3b8 100644
--- a/libmpdemux/asf_streaming.c
+++ b/libmpdemux/asf_streaming.c
@@ -656,7 +656,7 @@ asf_http_streaming_start( stream_t *stream, int *demuxer_type ) {
} else {
if( url->port==0 ) url->port = 80;
}
- fd = connect2Server( url->hostname, url->port );
+ fd = connect2Server( url->hostname, url->port, 1);
if( fd<0 ) return fd;
http_hdr = asf_http_request( stream->streaming_ctrl );