Minor formatting fix
This commit is contained in:
parent
d027b1703a
commit
6aa2e8aa51
1 changed files with 8 additions and 6 deletions
|
@ -93,15 +93,17 @@ void UDPC::ConnectionData::cleanupSentPkts() {
|
|||
}
|
||||
}
|
||||
|
||||
UDPC::Context::Context(bool isThreaded)
|
||||
: _contextIdentifier(UDPC_CONTEXT_IDENTIFIER), flags(),
|
||||
isAcceptNewConnections(true), protocolID(UDPC_DEFAULT_PROTOCOL_ID),
|
||||
UDPC::Context::Context(bool isThreaded) :
|
||||
_contextIdentifier(UDPC_CONTEXT_IDENTIFIER),
|
||||
flags(),
|
||||
isAcceptNewConnections(true),
|
||||
protocolID(UDPC_DEFAULT_PROTOCOL_ID),
|
||||
#ifndef NDEBUG
|
||||
loggingType(INFO),
|
||||
loggingType(INFO),
|
||||
#else
|
||||
loggingType(WARNING),
|
||||
loggingType(WARNING),
|
||||
#endif
|
||||
rng_engine()
|
||||
rng_engine()
|
||||
{
|
||||
if(isThreaded) {
|
||||
flags.set(0);
|
||||
|
|
Loading…
Reference in a new issue