openauthrequester.hh
来自「COPE the first practical network coding 」· HH 代码 · 共 65 行
HH
65 行
#ifndef CLICK_OPENAUTHREQUESTER_HH#define CLICK_OPENAUTHREQUESTER_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLS/*=cOpenAuthRequeser=s Wifi, Wireless StationSends 802.11 open authentication 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_auth_reqSends an authentication request based on values of the handlers.=a BeaconScanner */class OpenAuthRequester : public Element { public: OpenAuthRequester(); ~OpenAuthRequester(); const char *class_name() const { return "OpenAuthRequester"; } const char *processing() const { return PUSH; } int configure(Vector<String> &, ErrorHandler *); bool can_live_reconfigure() const { return true; } void add_handlers(); void send_auth_request(); void push(int, Packet *); bool _debug; EtherAddress _eth; class WirelessInfo *_winfo; private:};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?