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

@ -1 +1 @@
Subproject commit 02c344efb0eba8bd4f1eec8fb5dce3db5bda284a
Subproject commit 8390b18171dd7a49b71cb28bd718bb9372c1421b

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");
}