📄 setip6address.hh
字号:
#ifndef SETIP6ADDRESS_HH#define SETIP6ADDRESS_HH#include <click/element.hh>#include <click/ip6address.hh>CLICK_DECLS/* * =c * SetIP6Address(IP6) * =s IPv6 * * =d * Set the destination IP6 address annotation of incoming packets to the * static IP6 address IP6 * * =a StoreIP6Address, GetIP6Address */class SetIP6Address : public Element { IP6Address _ip6; public: SetIP6Address(); ~SetIP6Address(); const char *class_name() const { return "SetIP6Address"; } const char *processing() const { return AGNOSTIC; } int configure(Vector<String> &, ErrorHandler *); Packet *simple_action(Packet *); };CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -