locationhistogram.hh
来自「COPE the first practical network coding 」· HH 代码 · 共 31 行
HH
31 行
#ifndef CLICK_LOCATIONHISTOGRAM_HH#define CLICK_LOCATIONHISTOGRAM_HH#include <click/element.hh>#include <click/etheraddress.hh>#include <click/bighashmap.hh>#include <click/glue.hh>CLICK_DECLSclass LocationHistogram : public Element { public: LocationHistogram(); ~LocationHistogram(); const char *class_name() const { return "LocationHistogram"; } const char *processing() const { return PUSH; } int configure(Vector<String> &, ErrorHandler *); bool can_live_reconfigure() const { return true; } void push (int port, Packet *p_in); void add_handlers(); unsigned _length; Vector<int> _byte_errors;};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?