make IsConnectionLessMessageID static
This commit is contained in:
parent
85fef28e24
commit
bde026b06b
1 changed files with 2 additions and 2 deletions
|
@ -138,8 +138,8 @@ public:
|
||||||
const int iRecID,
|
const int iRecID,
|
||||||
const CHostAddress& InetAddr );
|
const CHostAddress& InetAddr );
|
||||||
|
|
||||||
bool IsConnectionLessMessageID ( const int iID ) const
|
static bool IsConnectionLessMessageID ( const int iID )
|
||||||
{ return (iID >= 1000) & (iID < 2000); }
|
{ return ( iID >= 1000 ) && ( iID < 2000 ); }
|
||||||
|
|
||||||
// this function is public because we need it in the test bench
|
// this function is public because we need it in the test bench
|
||||||
void CreateAndImmSendAcknMess ( const int& iID,
|
void CreateAndImmSendAcknMess ( const int& iID,
|
||||||
|
|
Loading…
Reference in a new issue