diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-12 15:44:04 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-12 15:44:04 +0200 |
commit | 3fc1cd9ec6d8473b40461da79176fe3ec41f47fa (patch) | |
tree | 0e39c5e9405ba0695eec06c06c77e7e9a22949cb /include | |
parent | 1a35c29ba743424df0cb27408cf08f7022a1c5f5 (diff) | |
download | ouroboros-3fc1cd9ec6d8473b40461da79176fe3ec41f47fa.tar.gz ouroboros-3fc1cd9ec6d8473b40461da79176fe3ec41f47fa.zip |
lib: Remove N-1 DIF param from enroll operation
This removes the parameter N-1 DIF from the enroll operation. IPCPs
should just allocate a flow to a DIF name and let the N-1 DIF resolve
it.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/ipcp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ouroboros/ipcp.h b/include/ouroboros/ipcp.h index 74a8cc77..0ce95b1e 100644 --- a/include/ouroboros/ipcp.h +++ b/include/ouroboros/ipcp.h @@ -37,8 +37,7 @@ pid_t ipcp_create(enum ipcp_type ipcp_type); int ipcp_destroy(pid_t api); int ipcp_enroll(pid_t api, - char * dif_name, - char * n_1_dif); + char * dif_name); int ipcp_bootstrap(pid_t api, dif_config_msg_t * conf); |