athdescencap.hh
来自「Click is a modular router toolkit. To us」· HH 代码 · 共 48 行
HH
48 行
#ifndef CLICK_ATHDESCENCAP_HH#define CLICK_ATHDESCENCAP_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLS/*=cAthdescEncap()=s WifiPushes the click_wifi_radiotap header on a packet based on information in Packet::anno()=dCopies the wifi_radiotap_header from Packet::anno() and pushes it onto the packet.=a AthdescDecap, SetTXRate*/class AthdescEncap : public Element { public: AthdescEncap(); ~AthdescEncap(); const char *class_name() const { return "AthdescEncap"; } const char *port_count() const { return PORTS_1_1; } const char *processing() const { return AGNOSTIC; } int configure(Vector<String> &, ErrorHandler *); bool can_live_reconfigure() const { return true; } Packet *simple_action(Packet *); void add_handlers(); bool _debug; private:};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?