📄 upstreamnotifier.hh
字号:
#ifndef CLICK_UPSTREAMNOTIFIER_HH#define CLICK_UPSTREAMNOTIFIER_HH#include <click/element.hh>#include <click/notifier.hh>CLICK_DECLS/*=cUpstreamNotifier([SIGNAL])=spasses packets unchanged. Has an upstream notifier. Genereally 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 *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 + -