printairo.hh
来自「COPE the first practical network coding 」· HH 代码 · 共 68 行
HH
68 行
#ifndef CLICK_PRINTAIRO_HH#define CLICK_PRINTAIRO_HH#include <click/element.hh>#include <click/string.hh>CLICK_DECLS/*=cPrint([TAG, I<KEYWORDS>])=s debuggingPrints raw Aironet header contents including 802.11 PLCP information,returns the underlying 802.11 packet.=dKeyword arguments are:=over 8=item TIMESTAMPBoolean. Determines whether to print each packet's timestamp in seconds since1970. Default is false.=item QUIETBoolean. If true, don't print any Aironet header info, justdecapsulate the 802.11 packet and pass it through. Default is false.=item VERBOSEBoolean. If true, print some extra information from the PLCP header.Default is false. This argument has no effect if QUIET is true.=back=aPrint, IPPrint, Print80211 */class PrintAiro : public Element { public: PrintAiro(); ~PrintAiro(); const char *class_name() const { return "PrintAiro"; } const char *processing() const { return AGNOSTIC; } int configure(Vector<String> &, ErrorHandler *); bool can_live_reconfigure() const { return true; } Packet *simple_action(Packet *); private: String _label; bool _timestamp; bool _quiet; bool _verbose;};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?