📄 dsr_proto.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 + -