Changeset 6145aa227a84a32b65beb8f27758e63f0b23b6b3
- Timestamp:
- 06/06/08 16:15:09
(6 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212761709 +0300
- git-parent:
[05480492c24943a17a784b8551562e5d728e8a4e]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212760312 +0300
- Message:
Add missing unicast parameter in the Transport: response
So-called "RTSP" VoD remains extremely broken,
and I have no intention to fix it.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3561b9b |
r6145aa2 |
|
| 1020 | 1020 | { |
|---|
| 1021 | 1021 | httpd_MsgAdd( answer, "Transport", |
|---|
| 1022 | | "MP2T/H2221/UDP;client_port=%d-%d", |
|---|
| | 1022 | "MP2T/H2221/UDP;unicast;client_port=%d-%d", |
|---|
| 1023 | 1023 | i_port, i_port + 1 ); |
|---|
| 1024 | 1024 | } |
|---|
| … | … | |
| 1026 | 1026 | { |
|---|
| 1027 | 1027 | httpd_MsgAdd( answer, "Transport", |
|---|
| 1028 | | "RAW/RAW/UDP;client_port=%d-%d", |
|---|
| | 1028 | "RAW/RAW/UDP;unicast;client_port=%d-%d", |
|---|
| 1029 | 1029 | i_port, i_port + 1 ); |
|---|
| 1030 | 1030 | } |
|---|
| … | … | |
| 1032 | 1032 | else |
|---|
| 1033 | 1033 | httpd_MsgAdd( answer, "Transport", |
|---|
| 1034 | | "RTP/AVP/UDP;client_port=%d-%d", |
|---|
| | 1034 | "RTP/AVP/UDP;unicast;client_port=%d-%d", |
|---|
| 1035 | 1035 | i_port, i_port + 1 ); |
|---|
| 1036 | 1036 | } |
|---|