rtp组播监听组播地址

更新ZLToolKit
This commit is contained in:
xiongziliang
2019-05-20 09:43:13 +08:00
parent 4db67aaa27
commit 2217211464
2 changed files with 2 additions and 2 deletions

View File

@@ -305,7 +305,7 @@ void RtspPlayer::handleResSETUP(const Parser &parser, unsigned int uiTrackIndex)
//udp组播
auto multiAddr = FindField((strTransport + ";").data(), "destination=", ";");
pRtpSockRef.reset(new Socket());
if (!pRtpSockRef->bindUdpSock(rtp_port, "0.0.0.0")) {
if (!pRtpSockRef->bindUdpSock(rtp_port, multiAddr.data())) {
pRtpSockRef.reset();
throw std::runtime_error("open udp sock err");
}