Added new protocol hook for dumping of protocol-dependent route
attributes. Please implement in all protocols.
This commit is contained in:
parent
73c7bed168
commit
69ec9087ad
2 changed files with 3 additions and 0 deletions
2
TODO
2
TODO
|
@ -2,6 +2,8 @@ Core
|
|||
~~~~
|
||||
- Remove TOS support?
|
||||
|
||||
* protocols: implement dumping of protocol-dependent rte attributes
|
||||
|
||||
- config: executable config files
|
||||
|
||||
- do we really need preconfig?
|
||||
|
|
|
@ -38,6 +38,7 @@ struct protocol {
|
|||
struct proto * (*init)(struct proto_config *); /* Create new instance */
|
||||
int (*reconfigure)(struct proto *, struct proto_config *); /* Try to reconfigure instance */
|
||||
void (*dump)(struct proto *); /* Debugging dump */
|
||||
void (*dump_attrs)(struct rte *); /* Dump protocol-dependent attributes */
|
||||
int (*start)(struct proto *); /* Start the instance */
|
||||
int (*shutdown)(struct proto *); /* Stop the instance */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue