setrandipaddress.hh
来自「Click is a modular router toolkit. To us」· HH 代码 · 共 45 行
HH
45 行
#ifndef SetRandIPAddress_hh#define SetRandIPAddress_hh#include <click/element.hh>#include <click/ipaddress.hh>CLICK_DECLS/* * =c * SetRandIPAddress(PREFIX, [LIMIT]) * =s ip * sets destination IP address annotations randomly * =d * Set the destination IP address annotation to a random number within * the specified PREFIX. * * If LIMIT is given, at most LIMIT distinct addresses will be generated. * * =a StoreIPAddress, GetIPAddress, SetIPAddress */class SetRandIPAddress : public Element { IPAddress _ip; IPAddress _mask; int _max; IPAddress *_addrs; public: SetRandIPAddress(); ~SetRandIPAddress(); const char *class_name() const { return "SetRandIPAddress"; } const char *port_count() const { return PORTS_1_1; } const char *processing() const { return AGNOSTIC; } int configure(Vector<String> &, ErrorHandler *); Packet *simple_action(Packet *); IPAddress pick();};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?