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

📄 associationrequester.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef CLICK_ASSOCIATIONREQUESTER_HH#define CLICK_ASSOCIATIONREQUESTER_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLS/*=cAssociationRequester=s Wifi, Wireless StationSends 802.11 association requests when poked.=d =h bssid read/writeThe bssid to associate to=h eth read/writeThe station's ethernet address=h ssid read/writeThe ssid to associate to=h listen_interval read/writeThe listen interval for the station, in milliseconds=h associated read onlyIf a association response was received and its status equals 0, this willbe true.=h send_assoc_reqSends an association request based on values of the handlers.=a BeaconScanner */class AssociationRequester : public Element { public:    AssociationRequester();  ~AssociationRequester();  const char *class_name() const	{ return "AssociationRequester"; }  const char *processing() const	{ return PUSH; }    int configure(Vector<String> &, ErrorHandler *);  bool can_live_reconfigure() const	{ return true; }  void push(int, Packet *);  void send_assoc_req();  void add_handlers();  void reset();  void process_response(Packet *p);  void process_disassociation(Packet *p);  bool _debug;  bool _associated;  EtherAddress _eth;  class AvailableRates *_rtable;  class WirelessInfo *_winfo;  String scan_string(); private:};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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