Changeset eee192243dbe28ce3ff1a1aa0072b90522618a8b

Show
Ignore:
Timestamp:
10/04/08 17:19:20 (6 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1207840760 +0200
git-parent:

[c86adb0f31d59ae08df11870ec33a0966c34624e]

git-author:
Rafaël Carré <funman@videolan.org> 1207840150 +0200
Message:

Fix RTSP server

Do not handle Range requests at all
This partly reverts 53474be3f66f0cdc722471f1f5aadf757e541c42

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/stream_out/rtsp.c

    rdbddc5a reee1922  
    602602 
    603603            psz_session = httpd_MsgGet( query, "Session" ); 
     604#if 0 
     605            /* FIXME: This breaks totem, mplayer and quicktime at least */ 
    604606            if( httpd_MsgGet( query, "Range" ) != NULL ) 
    605607            { 
     
    607609                break; 
    608610            } 
    609  
     611#endif 
    610612            vlc_mutex_lock( &rtsp->lock ); 
    611613            ses = RtspClientGet( rtsp, psz_session );