summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/pol/flat.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2017-02-21 14:45:04 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2017-02-21 14:45:04 +0100
commit64f2b95f622a3c2b16e4dbdc8553d506ef870a8c (patch)
treeffe86d4470e121c47fa11faf8dd5f921f1b6de1f /src/ipcpd/normal/pol/flat.c
parent91091367210ee204c4082a0da05eea3336674f19 (diff)
downloadouroboros-64f2b95f622a3c2b16e4dbdc8553d506ef870a8c.tar.gz
ouroboros-64f2b95f622a3c2b16e4dbdc8553d506ef870a8c.zip
ipcpd: normal: Change address authority policy
This changes the address authority to follow a similar approach to that of the other policies. No function pointers are passed to its user anymore.
Diffstat (limited to 'src/ipcpd/normal/pol/flat.c')
-rw-r--r--src/ipcpd/normal/pol/flat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ipcpd/normal/pol/flat.c b/src/ipcpd/normal/pol/flat.c
index d982f5ac..aa0f6c7c 100644
--- a/src/ipcpd/normal/pol/flat.c
+++ b/src/ipcpd/normal/pol/flat.c
@@ -80,6 +80,16 @@ static int addr_taken(char * name,
#define INVALID_ADDRESS 0
+int flat_init(void)
+{
+ return 0;
+}
+
+int flat_fini(void)
+{
+ return 0;
+}
+
uint64_t flat_address(void)
{
struct timespec t;