From 45ad14035a06e4947b1cc1d908bb665646c1f2a0 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Tue, 1 Mar 2016 15:08:37 +0100 Subject: lib, irmd, tools: Provide more IRM messages This provides the other messages that are used to communicate between the library and the IRM Daemon. The IRM tool just calls the library right now to see if it works. A full fledged program will be provided in a next commit. --- include/ouroboros/sockets.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/ouroboros/sockets.h') diff --git a/include/ouroboros/sockets.h b/include/ouroboros/sockets.h index fe7ddb28..88e9564b 100644 --- a/include/ouroboros/sockets.h +++ b/include/ouroboros/sockets.h @@ -24,6 +24,7 @@ #define OUROBOROS_SOCKETS_H #define IRM_SOCK_PATH "/tmp/irm_sock" +#define IRM_MSG_BUF_SIZE 256 enum irm_msg_code { IRM_CREATE_IPCP, @@ -31,18 +32,17 @@ enum irm_msg_code { IRM_BOOTSTRAP_IPCP, IRM_ENROLL_IPCP, IRM_REG_IPCP, - IRM_UNREG_IPCP, - IRM_LIST_IPCPS + IRM_UNREG_IPCP }; struct irm_msg { enum irm_msg_code code; - union { - struct { - rina_name_t * name; - char * ipcp_type; - } create_ipcp; - } msgs; + rina_name_t * name; + char * ipcp_type; + struct dif_info * info; + char * dif_name; + char ** difs; + size_t difs_size; }; int client_socket_open(char * file_name); -- cgit v1.2.3