bug fix: server was started on protocol messages which is not desired
This commit is contained in:
parent
04f0d3e8c8
commit
6287a70e3d
1 changed files with 3 additions and 1 deletions
|
@ -730,7 +730,9 @@ CreateAndSendChanListForAllConChannels();
|
||||||
}
|
}
|
||||||
Mutex.unlock();
|
Mutex.unlock();
|
||||||
|
|
||||||
return bChanOK;
|
// we do not want the server to be started on a protocol message but only on
|
||||||
|
// an audio packet -> consider "bIsNotEvaluatedProtocolMessage", too
|
||||||
|
return bChanOK && ( !bIsNotEvaluatedProtocolMessage );
|
||||||
}
|
}
|
||||||
|
|
||||||
void CServer::GetConCliParam ( CVector<CHostAddress>& vecHostAddresses,
|
void CServer::GetConCliParam ( CVector<CHostAddress>& vecHostAddresses,
|
||||||
|
|
Loading…
Reference in a new issue