⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upstreamnotifier.hh

📁 Click is a modular router toolkit. To use it you ll need to know how to compile and install the sof
💻 HH
字号:
#ifndef CLICK_UPSTREAMNOTIFIER_HH#define CLICK_UPSTREAMNOTIFIER_HH#include <click/element.hh>#include <click/notifier.hh>CLICK_DECLS/*=cUpstreamNotifier([SIGNAL])=s testpasses packets unchanged. Has an upstream notifier. Generally usedfor testing upstream notification.=dResponds to each packet by pushing it unchanged out its first output.Keyword arguments are:=over 8=item SIGNALBoolean. Whether to set the upstream signal to active.=h signal read/writeReturns if the signal is active. Same as the SIGNAL argument.=aPullNull, PokeHandlers, InfiniteSource*/class UpstreamNotifier : public Element { public:  UpstreamNotifier();  ~UpstreamNotifier();  const char *class_name() const	{ return "UpstreamNotifier"; }  const char *port_count() const	{ return PORTS_1_1; }  const char *processing() const	{ return PUSH; }  void *cast(const char *);  int configure(Vector<String> &conf, ErrorHandler *);  void add_handlers();  void push(int, Packet *);  ActiveNotifier _notifier;};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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