📄 openauthrequester.hh
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -