ldp.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:6k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
  2. /*
  3.  * ldp.h
  4.  * Copyright (C) 2000 by the University of Southern California
  5.  * $Id: ldp.h,v 1.4 2005/08/25 18:58:09 johnh Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. // Other copyrights might apply to parts of this software and are so
  47. // noted when applicable.
  48. //
  49. // Original source contributed by Gaeil Ahn. See below.
  50. //
  51. // $Header: /cvsroot/nsnam/ns-2/mpls/ldp.h,v 1.4 2005/08/25 18:58:09 johnh Exp $
  52. /**************************************************************************
  53. * Copyright (c) 2000 by Gaeil Ahn                                      *
  54. * Everyone is permitted to copy and distribute this software.   *
  55. * Please send mail to fog1@ce.cnu.ac.kr when you modify or distribute     *
  56. * this sources.   *
  57. **************************************************************************/
  58. /***********************************************************
  59. *                                                          *
  60. *    File: Header File for LDP & CR-LDP protocol           *
  61. *    Author: Gaeil Ahn (fog1@ce.cnu.ac.kr), Jan. 2000      *
  62. *                                                          *
  63. ***********************************************************/
  64. #ifndef ns_ldp_h
  65. #define ns_ldp_h
  66. #include "agent.h"
  67. #include "tclcl.h"
  68. #include "packet.h"
  69. #include "address.h"
  70. #include "ip.h"
  71. const int LDP_MaxMSGTEntryNB = 100;
  72. /* LDP msg types */
  73. const int LDP_NotificationMSG = 0x0001;
  74. const int LDP_MappingMSG =      0x0400;
  75. const int LDP_RequestMSG =      0x0401;
  76. const int LDP_WithdrawMSG =     0x0402;
  77. const int LDP_ReleaseMSG =      0x0403;
  78. const int LDP_LoopDetected =    0x000B;
  79. const int LDP_NoRoute =         0x000D;
  80. const int LDP_LabelALLOC =      0;
  81. const int LDP_LabelPASS =       1;
  82. const int LDP_LabelSTACK =      2;
  83. struct hdr_ldp {
  84. int  msgtype;
  85. int  msgid;   // request msg id (mapping msg triggered by request 
  86. // msg). if (msgid > -1): by request, else:  no 
  87. int  fec;
  88. int  label;
  89. int  reqmsgid;
  90. int  status;      // for Notification
  91. // XXX This is VERY BAD behavior! Should NEVER put a pointer
  92. // in a packet header!!
  93. char *pathvec; 
  94. // The following is for CR-LSP
  95. char *er;
  96. int  lspid;
  97. int  rc;
  98. // Header access methods
  99. static int offset_; // required by PacketHeaderManager
  100. inline static int& offset() { return offset_; }
  101. inline static hdr_ldp* access(const Packet* p) {
  102. return (hdr_ldp*)p->access(offset_);
  103. }
  104. };
  105. // Used for supporting ordered distribuiton mode (Explicit LSP)
  106. struct MsgTable {
  107. int  MsgID;
  108. int  FEC;
  109. int  LspID;
  110. int  Src;
  111. int  PMsgID; // previsou msg-id
  112. int  LabelOp;   // LabelALLOC, LabelPASS, or LabelSTACK
  113. int  ERLspID;
  114. };
  115. struct MsgT {
  116. MsgTable Entry[LDP_MaxMSGTEntryNB];
  117. int      NB;
  118. };
  119. class LDPAgent : public Agent {
  120. public:
  121. LDPAgent();
  122. virtual int command(int argc, const char*const* argv);
  123. virtual void recv(Packet*, Handler*);
  124. virtual void delay_bind_init_all();
  125. virtual int delay_bind_dispatch(const char *, const char *, 
  126. TclObject *);
  127.   
  128. inline int peer() const { return peer_; }
  129. inline void turn_on_trace() { trace_ldp_ = 1; }
  130. void PKTinit(hdr_ldp *hdrldp, int msgtype, const char *pathvec, 
  131.      const char *er);
  132. int  PKTsize(const char *pathvec, const char *er);
  133. int  MSGTinsert(int MsgID, int FEC, int LspID, int Src, int PMsgID);
  134. void MSGTdelete(int entrynb);
  135. int  MSGTlocate(int MsgID);
  136. int  MSGTlocate(int FEC,int LspID,int Src);
  137. void MSGTlookup(int entrynb, int &MsgID, int &FEC, int &LspID, 
  138. int &src, int &PMsgID, int &LabelOp);
  139. void MSGTdump();
  140.    
  141. protected:
  142. int    new_msgid_;
  143. int    trace_ldp_;
  144. int    peer_;
  145. void   trace(ns_addr_t src, hdr_ldp *hdrldp);
  146.   
  147. char* parse_msgtype(int msgtype, int lspid);
  148. char* parse_status(int status);
  149.   
  150. MsgT  MSGT_;
  151. };
  152. #endif