diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-02-12 22:31:17 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2020-02-16 18:19:59 +0100 |
commit | 71eeedd1a05d5dd200c77527ea15086bf43e1a26 (patch) | |
tree | de384011e90f0048f47c0a1b932f028dbff34bc5 /src/ipcpd/unicast/pol/alternate_pff.c | |
parent | a63edb8e9d3ba5eef03c1bbb454522ea7b369087 (diff) | |
download | ouroboros-71eeedd1a05d5dd200c77527ea15086bf43e1a26.tar.gz ouroboros-71eeedd1a05d5dd200c77527ea15086bf43e1a26.zip |
lib: Move hashtable from lib to unicast
The hashtable is only used for forwarding tables in the unicast
IPCP. This moves the generic hashtable out of the library into the
unicast IPCP to prepare a more tailored implementation specific to
routing tables containing address lists.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/unicast/pol/alternate_pff.c')
-rw-r--r-- | src/ipcpd/unicast/pol/alternate_pff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/unicast/pol/alternate_pff.c b/src/ipcpd/unicast/pol/alternate_pff.c index 131bc2d7..36d8d513 100644 --- a/src/ipcpd/unicast/pol/alternate_pff.c +++ b/src/ipcpd/unicast/pol/alternate_pff.c @@ -24,7 +24,6 @@ #include "config.h" -#include <ouroboros/hashtable.h> #include <ouroboros/errno.h> #include <ouroboros/list.h> @@ -32,6 +31,7 @@ #include <assert.h> #include <pthread.h> +#include "hashtable.h" #include "alternate_pff.h" struct nhop { |