📄 gridtxerror.hh
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -