setip6address.hh
来自「COPE the first practical network coding 」· HH 代码 · 共 39 行
HH
39 行
#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 + =
减小字号Ctrl + -
显示快捷键?