Skip to content
Snippets Groups Projects
Commit 4c6ef863 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #38532: audiortp: disable abort on socket error

parent 7343f35f
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,10 @@ AudioRtpFactory::AudioRtpFactory(SIPCall *ca) : rtpSession_(),
cachedRemoteMasterSalt_(MAX_MASTER_SALT_LENGTH),
remoteOfferIsSet_(false), ca_(ca),
keyExchangeProtocol_(NONE)
{}
{
// FIXME: workaround for uncatchable ost::Socket "exceptions"
ost::Thread::setException(ost::Thread::throwNothing);
}
AudioRtpFactory::~AudioRtpFactory()
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment