diff options
Diffstat (limited to 'src/ipcpd/normal/routing.h')
-rw-r--r-- | src/ipcpd/normal/routing.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/ipcpd/normal/routing.h b/src/ipcpd/normal/routing.h index 81208ffa..20dc72f9 100644 --- a/src/ipcpd/normal/routing.h +++ b/src/ipcpd/normal/routing.h @@ -34,9 +34,13 @@ * Routing will take a type in the future, * to allow different policies. */ -struct routing * routing_create(struct pff * pff, - struct nbs * nbs); -void routing_destroy(struct routing * instance); +int routing_init(struct nbs * nbs); + +void routing_fini(void); + +struct routing_i * routing_i_create(struct pff * pff); + +void routing_i_destroy(struct routing_i * instance); #endif /* OUROBOROS_IPCPD_NORMAL_ROUTING_H */ |