ip6routetable.hh

来自「COPE the first practical network coding 」· HH 代码 · 共 25 行

HH
25
字号
// -*- c-basic-offset: 4 -*-#ifndef CLICK_IP6ROUTETABLE_HH#define CLICK_IP6ROUTETABLE_HH#include <click/glue.hh>#include <click/element.hh>CLICK_DECLSclass IP6RouteTable : public Element { public:    void* cast(const char*);    virtual int add_route(IP6Address, IP6Address, IP6Address, int, ErrorHandler *);    virtual int remove_route(IP6Address, IP6Address, ErrorHandler *);    virtual String dump_routes();    static int add_route_handler(const String&, Element*, void*, ErrorHandler*);    static int remove_route_handler(const String&, Element*, void*, ErrorHandler*);    static int ctrl_handler(const String&, Element*, void*, ErrorHandler*);    static String table_handler(Element*, void*);};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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