Commit 644d0fb2 authored by John Selbie's avatar John Selbie Committed by GitHub

mac fix (#30)

fixed a build break on Mac with Xcode 10
parent 8503bead
...@@ -53,13 +53,14 @@ void CTCPStunThread::Reset() ...@@ -53,13 +53,14 @@ void CTCPStunThread::Reset()
_fListenSocketsOnEpoll = false; _fListenSocketsOnEpoll = false;
_tsaListen = {}; TransportAddressSet emptyTSA = {};
_tsaListen = emptyTSA;
_fNeedToExit = false; _fNeedToExit = false;
_spAuth.ReleaseAndClear(); _spAuth.ReleaseAndClear();
_role = RolePP; _role = RolePP;
_tsa = {}; _tsa = emptyTSA;
_maxConnections = c_MaxNumberOfConnectionsDefault; _maxConnections = c_MaxNumberOfConnectionsDefault;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment