summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/routing.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@ugent.be>2017-03-13 15:52:56 +0000
committerdimitri staessens <dimitri.staessens@ugent.be>2017-03-13 15:52:56 +0000
commit366fcbec4fb7de21c553f24efb977b45bf27f2e6 (patch)
tree6b7cdf38253b4b416f185a50470cc6ad8ffbfb74 /src/ipcpd/normal/routing.h
parent80dcc9aae225de1228347b91eb114b3e40022623 (diff)
parent25ddfa73bf24734765e892cfa1c4304b714fd9cc (diff)
downloadouroboros-366fcbec4fb7de21c553f24efb977b45bf27f2e6.tar.gz
ouroboros-366fcbec4fb7de21c553f24efb977b45bf27f2e6.zip
Merged in sandervrijders/ouroboros/be-rib-routing (pull request #400)
ipcpd: normal: Add Flow State Objects to RIB
Diffstat (limited to 'src/ipcpd/normal/routing.h')
-rw-r--r--src/ipcpd/normal/routing.h10
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 */