openauthresponder.hh
来自「Click is a modular router toolkit. To us」· HH 代码 · 共 68 行
HH
68 行
#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 *port_count() const { return PORTS_1_1; } 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 + =
减小字号Ctrl + -
显示快捷键?