diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-11-20 13:07:28 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-11-20 13:07:28 +0000 |
commit | cad42bc85f351362894810aae1a5018ccb5e3c9f (patch) | |
tree | 6a02e236ddc1ccbd266760e021eb39713aa006c9 /src/ipcpd/normal/ro.h | |
parent | c39e0cbc5e5fd18625dea6522fbd389eb9dc871f (diff) | |
parent | f8632a11faed3402e8255f368b8eff58f3b2eadb (diff) | |
download | ouroboros-cad42bc85f351362894810aae1a5018ccb5e3c9f.tar.gz ouroboros-cad42bc85f351362894810aae1a5018ccb5e3c9f.zip |
Merged in sandervrijders/ouroboros/be-rib-sync (pull request #301)
ipcpd: normal: Add syncing of RIB objects
Diffstat (limited to 'src/ipcpd/normal/ro.h')
-rw-r--r-- | src/ipcpd/normal/ro.h | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/src/ipcpd/normal/ro.h b/src/ipcpd/normal/ro.h index 0dfa7e8a..6fa1db2a 100644 --- a/src/ipcpd/normal/ro.h +++ b/src/ipcpd/normal/ro.h @@ -24,38 +24,33 @@ #define OUROBOROS_IPCP_RO_H enum ro_recv_set { - ALL_MEMBERS = 0, - NEIGHBORS + NO_SYNC = 0, + NEIGHBORS, + ALL_MEMBERS }; struct ro_props { - bool enrol_sync; - enum ro_recv_set recv_set; - struct timespec * expiry; + bool enrol_sync; + enum ro_recv_set recv_set; + struct timespec expiry; }; /* All RIB-objects have a pathname, separated by a slash. */ -/* Takes ownership of the data */ -int ro_create(const char * name, - uint8_t * data, - size_t len); +/* Takes ownership of the data and props */ +int ro_create(const char * name, + struct ro_props * props, + uint8_t * data, + size_t len); int ro_delete(const char * name); -/* Reader takes ownership of data */ -ssize_t ro_read(const char * name, - uint8_t ** data); - int ro_write(const char * name, uint8_t * data, size_t len); -/* Takes ownership of the props */ -int ro_props(const char * name, - struct ro_props * props); - -/* Sync changes with other members in the DIF */ -int ro_sync(const char * name); +/* Reader takes ownership of data */ +ssize_t ro_read(const char * name, + uint8_t ** data); /* Callback passes ownership of the data */ struct ro_sub_ops { |