Commit 00b3c518 by 夏楚 Committed by GitHub

修复RtpProcess析构中抛异常导致崩溃的问题 (#2714)

WarnP(this) 时会调用get_peer_ip()接口,此接口可能抛异常;
析构中抛异常可导致程序直接退出。
parent 73c8a5fa
...@@ -210,31 +210,27 @@ void RtpProcess::setOnDetach(function<void()> cb) { ...@@ -210,31 +210,27 @@ void RtpProcess::setOnDetach(function<void()> cb) {
} }
string RtpProcess::get_peer_ip() { string RtpProcess::get_peer_ip() {
if (!_addr) { try {
return _addr ? SockUtil::inet_ntoa((sockaddr *)_addr.get()) : "::";
} catch (std::exception &ex) {
return "::"; return "::";
} }
return SockUtil::inet_ntoa((sockaddr *)_addr.get());
} }
uint16_t RtpProcess::get_peer_port() { uint16_t RtpProcess::get_peer_port() {
if (!_addr) { try {
return _addr ? SockUtil::inet_port((sockaddr *)_addr.get()) : 0;
} catch (std::exception &ex) {
return 0; return 0;
} }
return SockUtil::inet_port((sockaddr *)_addr.get());
} }
string RtpProcess::get_local_ip() { string RtpProcess::get_local_ip() {
if (_sock) { return _sock ? _sock->get_local_ip() : "::";
return _sock->get_local_ip();
}
return "::";
} }
uint16_t RtpProcess::get_local_port() { uint16_t RtpProcess::get_local_port() {
if (_sock) { return _sock ? _sock->get_local_port() : 0;
return _sock->get_local_port();
}
return 0;
} }
string RtpProcess::getIdentifier() const { string RtpProcess::getIdentifier() const {
...@@ -305,4 +301,4 @@ float RtpProcess::getLossRate(MediaSource &sender, TrackType type) { ...@@ -305,4 +301,4 @@ float RtpProcess::getLossRate(MediaSource &sender, TrackType type) {
} }
}//namespace mediakit }//namespace mediakit
#endif//defined(ENABLE_RTPPROXY) #endif//defined(ENABLE_RTPPROXY)
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论