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

📄 dsr_proto.h

📁 在Linux下做的QuadTree的程序
💻 H
字号:
/* -*- c++ -*-    dsr_proto.h   the DSR routing protocol agent   $Id: dsr_proto.h,v 1.1.1.1 2000/08/28 18:40:09 jinyang Exp $   */#ifndef _dsr_proto_h#define _dsr_proto_h#include <packet.h>#include <object.h>#include <agent.h>#include "path.h"#include "routecache.h"class DSRProto : public Agent {public:  DSRProto();  void recv(Packet*, Handler* callback = 0);  int command(int argc, const char*const* argv);  void noRouteForPacket(Packet *p);private:  Trace *tracetarget;  RouteCache *routecache;  void testinit();  ID net_id;  ID mac_id;};#endif _dsr_proto_h

⌨️ 快捷键说明

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