📄 openauthresponder.hh
字号:
#ifndef CLICK_OPENAUTHRESPONDER_HH#define CLICK_OPENAUTHRESPONDER_HH#include <click/element.hh>#include <clicknet/ether.h>#include <click/etheraddress.hh>CLICK_DECLS/*=cOpenAuthResponder([, I<KEYWORDS>])=s Wifi, Wireless AccessPointRespond to 802.11 open authentication requests.=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 OpenAuthResponder : public Element { public: OpenAuthResponder(); ~OpenAuthResponder(); const char *class_name() const { return "OpenAuthResponder"; } const char *processing() const { return PUSH; } int configure(Vector<String> &, ErrorHandler *); bool can_live_reconfigure() const { return true; } void add_handlers(); void send_auth_response(EtherAddress, uint16_t, uint16_t); void push(int, Packet *); bool _debug; class WirelessInfo *_winfo; private:};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -