Message::GetMessageFlags
Defined in: C4Messages.h
Returns flags which indicate whether a message requires special handling.
Prototype
unsigned long GetMessageFlags(void) const;
Description
The return value of the GetMessageFlags function may be zero or a combination (through logical OR) of the following values.
kMessageUnreliable |
The message should be sent as an unreliable packet. Messages having this flag set are not guaranteed to reach their destinations, but they do arrive in order.
|
kMessageUnordered |
The message should be sent as an unordered packet. Messages having this flag set can arrive at their destinations out of order. The kMessageUnreliable flag must also be set.
|
kMessageCombineInhibit |
The message should not be combined with other messages into a single data packet. Messages having this flag set will always be transmitted as a distinct data packet.
|
See Also
Message::SetMessageFlags
|