⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ll.h

📁 对ns2软件进行UMTS扩展
💻 H
字号:
/* -*-	Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- *//* Modified and extended by Pablo Martin and Paula Ballester, * Strathclyde University, Glasgow. * June, 2003.*//* Copyright (c) 2003 Strathclyde University of Glasgow, Scotland. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code and binary code must contain * the above copyright notice, this list of conditions and the following * disclaimer. * * 2. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed at Strathclyde University of * Glasgow, Scotland. * * 3. The name of the University may not be used to endorse or promote * products derived from this software without specific prior written * permission. * STRATHCLYDE UNIVERSITY OF GLASGOW, MAKES NO REPRESENTATIONS * CONCERNING EITHER THE MERCHANTABILITY OF THIS SOFTWARE OR THE * SUITABILITY OF THIS SOFTWARE FOR ANY PARTICULAR PURPOSE.  The software * is provided "as is" without express or implied warranty of any kind.*//* * Copyright (c) 1997 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the Daedalus Research *	Group at the University of California Berkeley. * 4. Neither the name of the University nor of the Laboratory may be used *    to endorse or promote products derived from this software without *    specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Contributed by the Daedalus Research Group, http://daedalus.cs.berkeley.edu * * @(#) $Header: /nfs/jade/vint/CVSROOT/ns-2/mac/ll.h,v 1.28 2000/09/01 03:04:06 haoboy Exp $ (UCB) */#ifndef ns_ll_h#define ns_ll_h#include "marshall.h"#include <connector.h>#include <random.h>#include <mac.h>#include "packet.h"#include "delay.h"#include "queue.h"#include <arp.h>#include <classifier.h>#include <lanRouter.h>#include <varp.h>enum LLFrameType {	LL_DATA		= 0x0001,	LL_ACK		= 0x0010,	LL_SETUP		= 0x0011,	LL_SETUP_REPLY	= 0x0100,	LL_FAILURE		= 0X0101,	LL_PAGING		= 0x0110,	LL_RES_REQ		= 0x0111,	LL_RES_REPLY	= 0x1000,	LL_HANDOVER		= 0x1001,	LL_RELEASE_REQ	= 0x1010,	LL_RELEASE_REPLY	= 0x1011};struct hdr_ll {	LLFrameType lltype_;	// link-layer frame type	int seqno_;			// sequence number	int ackno_;			// acknowledgement number	int bopno_;			// begin of packet seqno	int eopno_;			// end of packet seqno	int psize_;			// size of packet	double sendtime_;		// time the packet is sent	int paging_ok_;		// for paging procedure	double tx_rate_;		// transmission rate of the data flow	static int offset_;	inline int& offset() { return offset_; }	static hdr_ll* access(const Packet* p) {		return (hdr_ll*) p->access(offset_);	}	inline LLFrameType& lltype() { return lltype_; }	inline int& seqno() { return seqno_; }	inline int& ackno() { return ackno_; }	inline int& bopno() { return bopno_; }	inline int& eopno() { return eopno_; }	inline int& psize() { return psize_; }	inline double& sendtime() { return sendtime_; }	inline double& tx_rate() { return tx_rate_; }};class LL : public LinkDelay {public:	friend void ARPTable::arpinput(Packet *p, LL* ll);	friend void ARPTable::arprequest(nsaddr_t src, nsaddr_t dst, LL* ll);	LL();	virtual void recv(Packet* p, Handler* h);	void handle(Event* e) { recv((Packet*)e, 0); }	inline int initialized() {		return (mac_ && uptarget_ && downtarget_);	}	virtual void sendUp(Packet* p);	virtual void sendDown(Packet* p);	// P.M. & P.B. modifications	virtual void switch_on(void) {}	virtual void update_flow(int acked, int fraged, int flowid) {}	virtual void configure_flow(int flow, const char*const& type , double rate) {}	inline int seqno() { return seqno_; }	inline int ackno() { return ackno_; }	inline int macDA() { return macDA_; }        inline Queue *ifq() { return ifq_; }        inline NsObject* downtarget() { return downtarget_; }        inline NsObject* uptarget() { return uptarget_; } 	inline ARPTable *arp_table() { return arptable_; }protected:	int command(int argc, const char*const* argv);	int seqno_;			// link-layer sequence number	int ackno_;			// ACK received so far	int macDA_;			// destination MAC address	  Queue* ifq_;			// interface queue	Mac*   mac_;		        // MAC object        LanRouter* lanrouter_;          // for lookups of the next hop	ARPTable*  arptable_;           // ARP table object	VARPTable* varp_;               // Virtual ARP object	NsObject* downtarget_;		// for outgoing packet	NsObject* uptarget_;		// for incoming packet};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -