Changeset eee192243dbe28ce3ff1a1aa0072b90522618a8b
- 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
| rdbddc5a |
reee1922 |
|
| 602 | 602 | |
|---|
| 603 | 603 | psz_session = httpd_MsgGet( query, "Session" ); |
|---|
| | 604 | #if 0 |
|---|
| | 605 | /* FIXME: This breaks totem, mplayer and quicktime at least */ |
|---|
| 604 | 606 | if( httpd_MsgGet( query, "Range" ) != NULL ) |
|---|
| 605 | 607 | { |
|---|
| … | … | |
| 607 | 609 | break; |
|---|
| 608 | 610 | } |
|---|
| 609 | | |
|---|
| | 611 | #endif |
|---|
| 610 | 612 | vlc_mutex_lock( &rtsp->lock ); |
|---|
| 611 | 613 | ses = RtspClientGet( rtsp, psz_session ); |
|---|