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

📄 proberesponder.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef CLICK_PROBERESPONDER_HH#define CLICK_PROBERESPONDER_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLS/*=cProbeResponder([, I<KEYWORDS>])=s Wifi, Wireless AccessPointRespond to 802.11 probe packets.=dKeyword arguments are: =over 8=item CHANNELThe wireless channel it is operating on.=item SSIDThe SSID of the access point.=item BSSIDAn Ethernet Address (usually the same as the ethernet address of the wireless card).=item INTERVALHow often beacon packets are sent, in milliseconds.=back 8=a BeaconScanner */class ProbeResponder : public Element { public:    ProbeResponder();  ~ProbeResponder();  const char *class_name() const	{ return "ProbeResponder"; }  const char *processing() const	{ return PUSH; }    int configure(Vector<String> &, ErrorHandler *);  bool can_live_reconfigure() const	{ return true; }  void add_handlers();  void send_probe_response(EtherAddress);  void push(int, Packet *);  bool _debug;  int _channel;  EtherAddress _bssid;  String _ssid;  class AvailableRates *_rtable;  int _interval_ms;  String scan_string(); private:};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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