gridtxerror.hh

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

HH
41
字号
#ifndef GRIDTXERR_HH#define GRIDTXERR_HH/* * =c * GridTxError * =s Grid * Reports packet transmission error to Grid logging infrastructure *=d * Keywords: * =over 8 * =item LOG * GridGenericLogger element.  If no LOG is specified in the configuration, no logging will occur. * =a GridLogger */#include <click/element.hh>CLICK_DECLSclass GridGenericLogger;class GridTxError : public Element { public:    GridTxError();  ~GridTxError();  const char *class_name() const { return "GridTxError"; }  const char *processing() const { return PUSH; }  int initialize(ErrorHandler *);  int configure(Vector<String> &, ErrorHandler *);  void push(int, Packet *);private:  GridGenericLogger *_log;};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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