Alex Bikfalvi
SimStream Documentation
Codes.h
00001 #pragma once 00002 00003 enum EPacketType 00004 { 00005 PACKET_TYPE_UNKNOWN = 0, 00006 PACKET_TYPE_IP = 1, 00007 PACKET_TYPE_UDP = 2, 00008 PACKET_TYPE_IGMP = 3, 00009 PACKET_TYPE_PIM_SM = 4, 00010 PACKET_TYPE_STREAM = 5, 00011 PACKET_TYPE_MESSAGE = 6, 00012 PACKET_TYPE_CONNECTION = 7, 00013 PACKET_TYPE_DUMMY = 8 00014 }; 00015 00016 enum ENetworkCode 00017 { 00018 NETWORK_SUCCESS = 0, 00019 NETWORK_FAIL = 1 00020 }; 00021 00022 enum EFrameType 00023 { 00024 FRAME_I = 0, 00025 FRAME_P = 1, 00026 FRAME_B = 2 00027 }; 00028 00029 extern char stringFrameType[]; 00030 00031 #define MAX_LAYERS 10 00032 #define BOOT_MAX_HOSTS 10 00033 #define BOOT_MAX_LAYERS 10
Last updated: February 8, 2011