bug fix: server was started on protocol messages which is not desired

This commit is contained in:
Volker Fischer 2009-10-14 06:53:02 +00:00
parent 04f0d3e8c8
commit 6287a70e3d

View file

@ -730,7 +730,9 @@ CreateAndSendChanListForAllConChannels();
}
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,