sendpattern.hh

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

HH
36
字号
#ifndef CLICK_SENDPATTERN_HH#define CLICK_SENDPATTERN_HH#include <click/element.hh>CLICK_DECLS/* * SendPattern(len) * * Keep sending packets of length len filled with a * repeating pattern. The point is to help diagnose * bit errors on a radio link. * * Meant to be used with CheckPattern. */class SendPattern : public Element {    int _len;     public:    SendPattern();  ~SendPattern();    const char *class_name() const		{ return "SendPattern"; }  const char *processing() const	{ return PULL; }    int configure(Vector<String> &, ErrorHandler *);  Packet *pull(int);  };CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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