udp.h

来自「在ns-2添加apps」· C头文件 代码 · 共 48 行

H
48
字号
/* -*-	Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- *//* * Copyright (c) Xerox Corporation 1997. All rights reserved. *   * License is granted to copy, to use, and to make and to use derivative * works for research and evaluation purposes, provided that Xerox is * acknowledged in all documentation pertaining to any such copy or derivative * work. Xerox grants no other licenses expressed or implied. The Xerox trade * name should not be used in any advertising without its written permission. *   * XEROX CORPORATION 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. *   * These notices must be retained in any copies of any part of this software. * * @(#) $Header: /nfs/jade/vint/CVSROOT/ns-2/apps/udp.h,v 1.14 2001/11/16 22:29:59 buchheim Exp $ (Xerox) */#ifndef ns_udp_h#define ns_udp_h#include "agent.h"#include "trafgen.h"#include "packet.h"//"rtp timestamp" needs the samplerate#define SAMPLERATE 8000#define RTP_M 0x0080 // marker for significant eventsclass UdpAgent : public Agent {public:	UdpAgent();	UdpAgent(packet_t);	virtual void sendmsg(int nbytes, const char *flags = 0)	{		sendmsg(nbytes, NULL, flags);	}	virtual void sendmsg(int nbytes, AppData* data, const char *flags = 0);	virtual void recv(Packet* pkt, Handler*);	virtual int command(int argc, const char*const* argv);protected:	int seqno_;};#endif

⌨️ 快捷键说明

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