summaryrefslogtreecommitdiff
path: root/include/ouroboros
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-06-13 13:48:17 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-06-13 13:48:17 +0200
commit7834e92b218da69cd934679dec9c2d714d89d15e (patch)
treee2174dd2810a20e90050481e2fd54ce61e414baf /include/ouroboros
parentddfc7091d2698d36c1cfec49eaaad96b278bb37b (diff)
downloadouroboros-7834e92b218da69cd934679dec9c2d714d89d15e.tar.gz
ouroboros-7834e92b218da69cd934679dec9c2d714d89d15e.zip
lib, irmd, tools, ipcpd: updates to dev API.
The registration function has been moved to the irm tool, applications now need to be registered by an administrator. Currently only supports one instance per registered name, and an AP can be registered under only one name. The irmd can now start a registered server application on demand. For the full functionality of the tool, execute "irm register". AP name removed from flow allocation. Flow allocation does not send the source ap name as it is quite useless. The accept() call now only returns the AE name.
Diffstat (limited to 'include/ouroboros')
-rw-r--r--include/ouroboros/dev.h6
-rw-r--r--include/ouroboros/ipcp.h2
-rw-r--r--include/ouroboros/irm.h18
-rw-r--r--include/ouroboros/utils.h3
4 files changed, 16 insertions, 13 deletions
diff --git a/include/ouroboros/dev.h b/include/ouroboros/dev.h
index 506fa789..1f664d35 100644
--- a/include/ouroboros/dev.h
+++ b/include/ouroboros/dev.h
@@ -36,12 +36,8 @@
int ap_init(char * ap_name);
void ap_fini(void);
-/* Returns file descriptor */
-int ap_reg(char ** difs, size_t difs_size);
-int ap_unreg(char ** difs, size_t difs_size);
-
/* Returns file descriptor (> 0) and client name(s) */
-int flow_accept(int fd, char ** ap_name, char ** ae_name);
+int flow_accept(char ** ae_name);
int flow_alloc_resp(int fd, int result);
/* Returns file descriptor */
diff --git a/include/ouroboros/ipcp.h b/include/ouroboros/ipcp.h
index 08bee33e..89b9fa92 100644
--- a/include/ouroboros/ipcp.h
+++ b/include/ouroboros/ipcp.h
@@ -63,7 +63,6 @@ int ipcp_flow_alloc(pid_t pid,
int port_id,
pid_t n_pid,
char * dst_name,
- char * src_ap_name,
char * src_ae_name,
enum qos_cube qos);
int ipcp_flow_alloc_resp(pid_t pid,
@@ -76,7 +75,6 @@ int ipcp_flow_alloc_resp(pid_t pid,
/* Returns the port_id */
int ipcp_flow_req_arr(pid_t pid,
char * dst_name,
- char * src_ap_name,
char * src_ae_name);
int ipcp_flow_alloc_reply(pid_t pid,
int port_id,
diff --git a/include/ouroboros/irm.h b/include/ouroboros/irm.h
index 37524098..9d547643 100644
--- a/include/ouroboros/irm.h
+++ b/include/ouroboros/irm.h
@@ -39,10 +39,16 @@ int irm_enroll_ipcp(instance_name_t * api,
int irm_bootstrap_ipcp(instance_name_t * api,
struct dif_config * conf);
-int irm_reg_ipcp(instance_name_t * api,
- char ** difs,
- size_t difs_size);
-int irm_unreg_ipcp(const instance_name_t * api,
- char ** difs,
- size_t difs_size);
+int irm_reg(char * name,
+ instance_name_t * api,
+ int argc,
+ char ** argv,
+ bool autoexec,
+ char ** difs,
+ size_t difs_size);
+int irm_unreg(char * name,
+ const instance_name_t * api,
+ char ** difs,
+ size_t difs_size,
+ bool hard);
#endif /* OUROBOROS_IRM_H */
diff --git a/include/ouroboros/utils.h b/include/ouroboros/utils.h
index a1d2ac96..17bd41ee 100644
--- a/include/ouroboros/utils.h
+++ b/include/ouroboros/utils.h
@@ -31,3 +31,6 @@ int n_digits(unsigned i);
/* Returns a copy of the source string */
char * strdup(const char * src);
+
+/* gets the application name */
+char * path_strip(char * src);