radiotapencap.hh
来自「Click is a modular router toolkit. To us」· HH 代码 · 共 48 行
HH
48 行
#ifndef CLICK_RADIOTAPENCAP_HH#define CLICK_RADIOTAPENCAP_HH#include <click/element.hh>#include <clicknet/ether.h>CLICK_DECLS/*=cRadiotapEncap()=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 RadiotapDecap, SetTXRate*/class RadiotapEncap : public Element { public: RadiotapEncap(); ~RadiotapEncap(); const char *class_name() const { return "RadiotapEncap"; } 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 + -
显示快捷键?