src/Network/Channel.hh
changeset 431 c6d7272a164b
child 432 82b0f4e55a13
equal deleted inserted replaced
430:74e562e16399 431:c6d7272a164b
       
     1 #ifndef NETWORK_CHANNEL_HH
       
     2 #define NETWORK_CHANNEL_HH
       
     3 
       
     4 #include "../Types.hh"
       
     5 
       
     6 /**
       
     7  * A NetworkSession puts each packet onto a specific channel, which can the be used to run multiple different modules
       
     8  * on top of a single session.
       
     9  *
       
    10  * NetworkChannelID zero is reserved for internal NetworkSession use
       
    11  */
       
    12 typedef uint16_t NetworkChannelID;
       
    13 
       
    14 
       
    15 #endif /* NETWORK_CHANNEL_HH */