00001 // -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- 00002 00003 /* 00004 * Copyright (C) 2004 by the University of Southern California 00005 * Copyright (C) 2004 by USC/ISI 00006 * $Id: xcp.h,v 1.8 2005/08/25 18:58:14 johnh Exp $ 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License, 00010 * version 2, as published by the Free Software Foundation. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License along 00018 * with this program; if not, write to the Free Software Foundation, Inc., 00019 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 00020 * 00021 * 00022 * The copyright of this module includes the following 00023 * linking-with-specific-other-licenses addition: 00024 * 00025 * In addition, as a special exception, the copyright holders of 00026 * this module give you permission to combine (via static or 00027 * dynamic linking) this module with free software programs or 00028 * libraries that are released under the GNU LGPL and with code 00029 * included in the standard release of ns-2 under the Apache 2.0 00030 * license or under otherwise-compatible licenses with advertising 00031 * requirements (or modified versions of such code, with unchanged 00032 * license). You may copy and distribute such a system following the 00033 * terms of the GNU GPL for this module and the licenses of the 00034 * other code concerned, provided that you include the source code of 00035 * that other code when and as the GNU GPL requires distribution of 00036 * source code. 00037 * 00038 * Note that people who make modified versions of this module 00039 * are not obligated to grant this special exception for their 00040 * modified versions; it is their choice whether to do so. The GNU 00041 * General Public License gives permission to release a modified 00042 * version without this exception; this exception also makes it 00043 * possible to release a modified version which carries forward this 00044 * exception. 00045 * 00046 */ 00047 /* 00048 * @(#) $Header: /nfs/jade/vint/CVSROOT/ns-2/xcp/xcp.h,v 1.8 2005/08/25 18:58:14 johnh Exp $ 00049 */ 00050 00051 #ifndef NS_XCP 00052 #define NS_XCP 00053 00054 #include "packet.h" 00055 #include "queue.h" 00056 #include "xcpq.h" 00057 00058 00059 enum {XCPQ=0, TCPQ=1, OTHERQ=2, MAX_QNUM}; 00060 00061 // code points for separating XCP/TCP flows 00062 #define CP_XCP 10 00063 #define CP_TCP 20 00064 #define CP_OTHER 30 00065 00066 00067 class XCPWrapQ : public Queue { 00068 public: 00069 XCPWrapQ(); 00070 int command(int argc, const char*const* argv); 00071 void recv(Packet*, Handler*); 00072 00073 protected: 00074 Queue *q_[MAX_QNUM]; 00075 00076 XCPQueue *xcpq_; // same as q_[XCPQ] 00077 00078 unsigned int routerId_; 00079 00080 int qToDq_; // current queue being dequed 00081 double wrrTemp_[MAX_QNUM]; // state of queue being serviced 00082 double queueWeight_[MAX_QNUM]; // queue weight for each queue (dynamic) 00083 00084 int spread_bytes_; 00085 bool tcp_xcp_on_; // true if XCP/TCP sharing is enables 00086 00087 // Modified functions 00088 virtual void enque(Packet* pkt); // high level enque function 00089 virtual Packet* deque(); // high level deque function 00090 00091 void addQueueWeights(int queueNum, int weight); 00092 int queueToDeque(); // returns qToDq 00093 int queueToEnque(int codePt); // returns queue based on codept 00094 void mark(Packet *p); // marks pkt based on flow type 00095 int getCodePt(Packet *p); // returns codept in pkt hdr 00096 void setVirtualQueues(); // setup virtual queues(for xcp/tcp) 00097 }; 00098 00099 #endif //NS_XCP
1.4.6