filterphyerr.hh

来自「COPE the first practical network coding 」· HH 代码 · 共 48 行

HH
48
字号
#ifndef CLICK_FILTERPHYERR_HH#define CLICK_FILTERPHYERR_HH#include <click/element.hh>#include <click/etheraddress.hh>#include <click/bighashmap.hh>#include <click/glue.hh>CLICK_DECLS/*=cFilterPhyErr([I<KEYWORDS>])=s WifiFilters packets that failed the 802.11 CRC check.=dFilters out packets that have the phy err annotation setin the wifi_extra_header, and sends these packets to output 1 if it is present.=a ExtraDecap, ExtraEncap*/class FilterPhyErr : public Element { public:    FilterPhyErr();  ~FilterPhyErr();    const char *class_name() const		{ return "FilterPhyErr"; }  const char *processing() const		{ return "a/ah"; }  void notify_noutputs(int);  int configure(Vector<String> &, ErrorHandler *);  void add_handlers();  Packet *simple_action(Packet *);    int _drops;};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?