diff options
author | Dimitri Staessens <[email protected]> | 2020-02-12 22:31:17 +0100 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2020-02-16 18:19:59 +0100 |
commit | 71eeedd1a05d5dd200c77527ea15086bf43e1a26 (patch) | |
tree | de384011e90f0048f47c0a1b932f028dbff34bc5 /src/ipcpd/unicast/pol/simple_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 <[email protected]>
Signed-off-by: Sander Vrijders <[email protected]>
Diffstat (limited to 'src/ipcpd/unicast/pol/simple_pff.c')
-rw-r--r-- | src/ipcpd/unicast/pol/simple_pff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/unicast/pol/simple_pff.c b/src/ipcpd/unicast/pol/simple_pff.c index c34a4fdc..3d294d90 100644 --- a/src/ipcpd/unicast/pol/simple_pff.c +++ b/src/ipcpd/unicast/pol/simple_pff.c @@ -24,12 +24,12 @@ #include "config.h" -#include <ouroboros/hashtable.h> #include <ouroboros/errno.h> #include <assert.h> #include <pthread.h> +#include "hashtable.h" #include "simple_pff.h" struct pff_i { |