Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __PACKET_PRIORITY_H
00010 #define __PACKET_PRIORITY_H
00011
00013 enum PacketPriority
00014 {
00016 IMMEDIATE_PRIORITY,
00017
00020 HIGH_PRIORITY,
00021
00024 MEDIUM_PRIORITY,
00025
00028 LOW_PRIORITY,
00029
00031 NUMBER_OF_PRIORITIES
00032 };
00033
00038 enum PacketReliability
00039 {
00041 UNRELIABLE,
00042
00044 UNRELIABLE_SEQUENCED,
00045
00047 RELIABLE,
00048
00050 RELIABLE_ORDERED,
00051
00053 RELIABLE_SEQUENCED,
00054
00056 UNRELIABLE_WITH_ACK_RECEIPT,
00057
00060
00061
00063 RELIABLE_WITH_ACK_RECEIPT,
00064
00066 RELIABLE_ORDERED_WITH_ACK_RECEIPT,
00067
00070
00071
00073 NUMBER_OF_RELIABILITIES
00074 };
00075
00076 #endif