proberequester.hh

来自「COPE the first practical network coding 」· HH 代码 · 共 33 行

HH
33
字号
#ifndef CLICK_PROBEREQUESTER_HH#define CLICK_PROBEREQUESTER_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLSclass ProbeRequester : public Element { public:    ProbeRequester();  ~ProbeRequester();  const char *class_name() const	{ return "ProbeRequester"; }  const char *processing() const	{ return PUSH; }    int configure(Vector<String> &, ErrorHandler *);  bool can_live_reconfigure() const	{ return true; }  void add_handlers();  void send_probe_request();  bool _debug;  EtherAddress _eth;  class AvailableRates *_rtable;  class WirelessInfo *_winfo; private:};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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