Hello Sir,<br><br>I made an streaming application in which i am streaming an transport stream file through your program testMPEG2TransportStreamer.cpp<br>with RTSP server implemented in it and then i am receiving the stream using Proxy server.<br>
When i saw the documentation of Proxy server you have mentioned that to use "-t" option to request that each 'back-end' RTSP server stream RTP and RTCP data packets over its TCP connection, instead of using UDP packets."<br>
but after giving URL like "-t rtsp://<a href="http://192.168.15.192/streamname">192.168.15.192/streamname</a>" in proxy server i saw that in wireshark the "testMPEG2TransportStreamer<br>" is sending UDP packets.<br>
<br>Then i made a change in "testMPEG2TransportStreamer" that i replaces this line of code by<br>sms->addSubsession(PassiveServerMediaSubsession::createNew(*videoSink, rtcp));//original<br><br>by this line of code<br>
    <br>sms->addSubsession(MPEG2TransportUDPServerMediaSubsession::createNew(*env,destinationAddressStr,rtpPortNum,inputStreamIsRawUDP));<br><br>Still i am not able to see the TCP packets streaming from "testMPEG2TransportStreamer".<br>
<br>Whats the issue sir can you explain ? <br>What should be done to remove the above issue?<br><br>Thanks<br>Tarun<br>