⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 printairo.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -