diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-02-21 14:10:53 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-21 14:10:53 +0000 |
commit | 198e319d14af53891b81cca36fe92e06d5d7d67d (patch) | |
tree | ffe86d4470e121c47fa11faf8dd5f921f1b6de1f /src/ipcpd/normal/addr_auth.h | |
parent | 91091367210ee204c4082a0da05eea3336674f19 (diff) | |
parent | 64f2b95f622a3c2b16e4dbdc8553d506ef870a8c (diff) | |
download | ouroboros-198e319d14af53891b81cca36fe92e06d5d7d67d.tar.gz ouroboros-198e319d14af53891b81cca36fe92e06d5d7d67d.zip |
Merged in sandervrijders/ouroboros/be-addr (pull request #384)
ipcpd: normal: Change address authority policy
Diffstat (limited to 'src/ipcpd/normal/addr_auth.h')
-rw-r--r-- | src/ipcpd/normal/addr_auth.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/ipcpd/normal/addr_auth.h b/src/ipcpd/normal/addr_auth.h index 8d67bc66..b389fa90 100644 --- a/src/ipcpd/normal/addr_auth.h +++ b/src/ipcpd/normal/addr_auth.h @@ -3,7 +3,8 @@ * * Address authority * - * Sander Vrijders <sander.vrijders@intec.ugent.be> + * Sander Vrijders <sander.vrijders@intec.ugent.be> + * Dimitri Staessens <dimitri.staessens@intec.ugent.be> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -26,13 +27,10 @@ #include <stdint.h> -struct addr_auth { - enum pol_addr_auth type; - uint64_t (* address)(void); -}; +int addr_auth_init(enum pol_addr_auth type); -struct addr_auth * addr_auth_create(enum pol_addr_auth type); +int addr_auth_fini(void); -int addr_auth_destroy(struct addr_auth * instance); +uint64_t addr_auth_address(void); #endif /* OUROBOROS_IPCPD_NORMAL_ADDR_AUTH_H */ |