Changeset 6145aa227a84a32b65beb8f27758e63f0b23b6b3

Show
Ignore:
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
  • modules/misc/rtsp.c

    r3561b9b r6145aa2  
    10201020                    { 
    10211021                        httpd_MsgAdd( answer, "Transport", 
    1022                                       "MP2T/H2221/UDP;client_port=%d-%d", 
     1022                                      "MP2T/H2221/UDP;unicast;client_port=%d-%d", 
    10231023                                      i_port, i_port + 1 ); 
    10241024                    } 
     
    10261026                    { 
    10271027                        httpd_MsgAdd( answer, "Transport", 
    1028                                       "RAW/RAW/UDP;client_port=%d-%d", 
     1028                                      "RAW/RAW/UDP;unicast;client_port=%d-%d", 
    10291029                                      i_port, i_port + 1 ); 
    10301030                    } 
     
    10321032                else 
    10331033                    httpd_MsgAdd( answer, "Transport", 
    1034                                   "RTP/AVP/UDP;client_port=%d-%d", 
     1034                                  "RTP/AVP/UDP;unicast;client_port=%d-%d", 
    10351035                                  i_port, i_port + 1 ); 
    10361036            }