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

📄 mm-app.h

📁 相关搜索: ns2仿真结果分析 all-awk ns2 ns2 无限网络中awk文件 ... [2.tcl.rar] - 在ns2平台上实现对AODV协议的模拟
💻 H
字号:
//// Author:    Jae Chung// File:      mm-app.h// Written:   07/17/99 (for ns-2.1b4a)// Modifed:   10/14/01 (for ns-2.1b8a)// #include "timer-handler.h"#include "packet.h"#include "app.h"#include "udp-mm.h"// This is used for receiver's received packet accountingstruct pkt_accounting {         int last_seq;   // sequence number of last received MM pkt        int last_scale; // rate (0-4) of last acked        int lost_pkts;  // number of lost pkts since last ack        int recv_pkts;  // number of received pkts since last ack        double rtt;     // round trip time};class MmApp;// Sender uses this timer to // schedule next app data packet transmission timeclass SendTimer : public TimerHandler { public:	SendTimer(MmApp* t) : TimerHandler(), t_(t) {}	inline virtual void expire(Event*); protected:	MmApp* t_;};// Reciver uses this timer to schedule// next ack packet transmission timeclass AckTimer : public TimerHandler { public:	AckTimer(MmApp* t) : TimerHandler(), t_(t) {}	inline virtual void expire(Event*); protected:	MmApp* t_;};// Mulitmedia Application Class Definitionclass MmApp : public Application { public:	MmApp();	void send_mm_pkt();  // called by SendTimer:expire (Sender)	void send_ack_pkt(); // called by AckTimer:expire (Receiver) protected:	int command(int argc, const char*const* argv);	void start();       // Start sending data packets (Sender)	void stop();        // Stop sending data packets (Sender) private:	void init();	inline double next_snd_time();                          // (Sender)	virtual void recv_msg(int nbytes, const char *msg = 0); // (Sender/Receiver)	void set_scale(const hdr_mm *mh_buf);                   // (Sender)	void adjust_scale(void);                                // (Receiver)	void account_recv_pkt(const hdr_mm *mh_buf);            // (Receiver)	void init_recv_pkt_accounting();                        // (Receiver)	double rate[5];        // Transmission rates associated to scale values	double interval_;      // Application data packet transmission interval	int pktsize_;          // Application data packet size	int random_;           // If 1 add randomness to the interval	int running_;          // If 1 application is running	int seq_;              // Application data packet sequence number	int scale_;            // Media scale parameter	pkt_accounting p_accnt;	SendTimer snd_timer_;  // SendTimer	AckTimer  ack_timer_;  // AckTimer};

⌨️ 快捷键说明

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