INET Framework for OMNeT++/OMNEST
ConstType.h
Go to the documentation of this file.
00001 //
00002 // (C) 2005 Vojtech Janota
00003 // (C) 2003 Xuan Thang Nguyen
00004 //
00005 // This library is free software, you can redistribute it
00006 // and/or modify
00007 // it under  the terms of the GNU Lesser General Public License
00008 // as published by the Free Software Foundation;
00009 // either version 2 of the License, or any later version.
00010 // The library is distributed in the hope that it will be useful,
00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00013 // See the GNU Lesser General Public License for more details.
00014 //
00015 
00016 #ifndef __INET_CONSTANT_H
00017 #define __INET_CONSTANT_H
00018 
00019 
00020 #include "INETDefs.h"
00021 
00022 enum messageKind
00023 {
00024     MPLS_KIND,
00025     LDP_KIND,
00026     SIGNAL_KIND
00027 };
00028 
00029 
00030 namespace ConstType
00031 {
00032 
00033 const  char libDataMarker[]="In-lbl       In-intf     Out-lbl       Out-intf";
00034 const  char prtDataMarker[]="Prefix            Pointer";
00035 
00036 const char UnknownData[]="UNDEFINED";
00037 const char NoLabel[] = "Nolabel";
00038 const char wildcast[]="*";
00039 const char empty[]="";
00040 
00041 const int ldp_port = 646;
00042 
00043 const int LDP_KIND =10;
00044 const int HOW_KIND =50;
00045 
00046 };
00047 
00048 #endif
00049 
00050