diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-26 09:56:31 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-26 09:56:31 +0000 |
commit | cc64e52dee3559128293a17a669e94acb48f9309 (patch) | |
tree | e4ef544c225e3b118c8a73d868dccaa073b55f11 /src/irmd/registry.h | |
parent | 0fd97235ecf670f1fc6db2723c530934b5376458 (diff) | |
parent | f0646875d0bc941e339d305d0c68b13543cd6f2a (diff) | |
download | ouroboros-cc64e52dee3559128293a17a669e94acb48f9309.tar.gz ouroboros-cc64e52dee3559128293a17a669e94acb48f9309.zip |
Merged in sandervrijders/ouroboros/be-directory (pull request #280)
lib, irmd, ipcpd: Add name querying to IPCPs
Diffstat (limited to 'src/irmd/registry.h')
-rw-r--r-- | src/irmd/registry.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/irmd/registry.h b/src/irmd/registry.h index 35c4c10b..10cb12e8 100644 --- a/src/irmd/registry.h +++ b/src/irmd/registry.h @@ -27,15 +27,15 @@ #include <ouroboros/list.h> #include <ouroboros/irm_config.h> +#include "api_table.h" +#include "apn_table.h" + #include <stdint.h> #include <stdbool.h> #include <pthread.h> #include <string.h> #include <sys/types.h> -#include "api_table.h" -#include "apn_table.h" - #define registry_has_name(r, name) \ (registry_get_entry(r, name) != NULL) @@ -99,9 +99,6 @@ void registry_sanitize_apis(struct list_head * registry); struct reg_entry * registry_get_entry(struct list_head * registry, char * name); -char * registry_get_dif_for_dst(struct list_head * registry, - char * dst_name); - int registry_add_name_to_dif(struct list_head * registry, char * name, char * dif_name, |