diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-08 13:44:15 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-08 13:44:15 +0200 |
commit | a4058de51793b7b866ad9b9f52001bb34ca57e8b (patch) | |
tree | 35c55d50cea6e77c23bf63472ad95f755846c145 /src/ipcpd/ipcp.c | |
parent | 00dba20de7462c07866d321597697456a0ae8555 (diff) | |
parent | f224dbb901842b021e231e4f3d7c42e62babcdb3 (diff) | |
download | ouroboros-a4058de51793b7b866ad9b9f52001bb34ca57e8b.tar.gz ouroboros-a4058de51793b7b866ad9b9f52001bb34ca57e8b.zip |
Merged in dstaesse/ouroboros/be-ops (pull request #167)
ipcpd: Deprecate ipcp_reg/ipcp_unreg
Diffstat (limited to 'src/ipcpd/ipcp.c')
-rw-r--r-- | src/ipcpd/ipcp.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c index 28004a92..444d17bb 100644 --- a/src/ipcpd/ipcp.c +++ b/src/ipcpd/ipcp.c @@ -188,27 +188,6 @@ void * ipcp_main_loop(void * o) msg->n_1_dif); break; - - case IPCP_MSG_CODE__IPCP_REG: - if (_ipcp->ops->ipcp_reg == NULL) { - LOG_ERR("Reg unsupported."); - break; - - } - ret_msg.has_result = true; - ret_msg.result = - _ipcp->ops->ipcp_reg(msg->dif_names, msg->len); - break; - case IPCP_MSG_CODE__IPCP_UNREG: - if (_ipcp->ops->ipcp_unreg == NULL) { - LOG_ERR("Unreg unsupported."); - break; - } - ret_msg.has_result = true; - ret_msg.result = - _ipcp->ops->ipcp_unreg(msg->dif_names, - msg->len); - break; case IPCP_MSG_CODE__IPCP_NAME_REG: if (_ipcp->ops->ipcp_name_reg == NULL) { LOG_ERR("Ap_reg unsupported."); |