summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/ro.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-02 15:22:52 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-02 17:45:24 +0100
commit85b3822a4cc121dcb3d87937c2a44395d8887ae3 (patch)
tree941b20c216e21bceb8741704debfe6efc07f2c2f /src/ipcpd/normal/ro.h
parent552f2eb19f04968c0c5ebc7b16f6aa1cb61b6b29 (diff)
downloadouroboros-85b3822a4cc121dcb3d87937c2a44395d8887ae3.tar.gz
ouroboros-85b3822a4cc121dcb3d87937c2a44395d8887ae3.zip
ipcpd: normal: Provide directory for registered names
This adds a directory to the normal IPCP that maps names on IPCP addresses.
Diffstat (limited to 'src/ipcpd/normal/ro.h')
-rw-r--r--src/ipcpd/normal/ro.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/ipcpd/normal/ro.h b/src/ipcpd/normal/ro.h
index 278c9213..99ea81f1 100644
--- a/src/ipcpd/normal/ro.h
+++ b/src/ipcpd/normal/ro.h
@@ -20,8 +20,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#ifndef OUROBOROS_IPCP_RO_H
-#define OUROBOROS_IPCP_RO_H
+#ifndef OUROBOROS_IPCPD_NORMAL_RO_H
+#define OUROBOROS_IPCPD_NORMAL_RO_H
enum ro_recv_set {
NO_SYNC = 0,
@@ -54,6 +54,11 @@ int ro_write(const char * name,
ssize_t ro_read(const char * name,
uint8_t ** data);
+ssize_t ro_children(const char * name,
+ char *** children);
+
+bool ro_exists(const char * name);
+
/* Callback passes ownership of the data */
struct ro_sub_ops {
void (* ro_created)(const char * name,
@@ -71,4 +76,4 @@ int ro_subscribe(const char * name,
int ro_unsubscribe(int sid);
-#endif
+#endif /* OUROBOROS_IPCPD_NORMAL_RO_H */