diff options
Diffstat (limited to 'src/ipcpd')
| -rw-r--r-- | src/ipcpd/ipcp.c | 6 | ||||
| -rw-r--r-- | src/ipcpd/local/main.c | 2 | ||||
| -rw-r--r-- | src/ipcpd/shim-eth-llc/main.c | 2 | ||||
| -rw-r--r-- | src/ipcpd/shim-udp/main.c | 2 | 
4 files changed, 5 insertions, 7 deletions
| diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c index e86487af..4aec7567 100644 --- a/src/ipcpd/ipcp.c +++ b/src/ipcpd/ipcp.c @@ -212,8 +212,6 @@ static void * ipcp_main_loop(void * o)                          conf_msg = msg->conf;                          conf.type = conf_msg->ipcp_type; -                        conf.dif_info.dir_hash_algo = -                                conf_msg->dif_info->dir_hash_algo;                          strcpy(conf.dif_info.dif_name,                                 conf_msg->dif_info->dif_name);                          if (conf.dif_info.dif_name == NULL) { @@ -229,6 +227,8 @@ static void * ipcp_main_loop(void * o)                                  conf.dt_gam_type    = conf_msg->dt_gam_type;                                  conf.rm_gam_type    = conf_msg->rm_gam_type;                                  conf.routing_type   = conf_msg->routing_type; +                                conf.dif_info.dir_hash_algo = +                                        conf_msg->dif_info->dir_hash_algo;                          }                          if (conf_msg->ipcp_type == IPCP_SHIM_UDP) { @@ -239,6 +239,8 @@ static void * ipcp_main_loop(void * o)                          if (conf_msg->ipcp_type == IPCP_SHIM_ETH_LLC)                                  conf.if_name = conf_msg->if_name; +                        ipcpi.dir_hash_algo = conf_msg->dif_info->dir_hash_algo; +                          ret_msg.result = ipcpi.ops->ipcp_bootstrap(&conf);                          break;                  case IPCP_MSG_CODE__IPCP_ENROLL: diff --git a/src/ipcpd/local/main.c b/src/ipcpd/local/main.c index 758e57ae..ddb5e4ec 100644 --- a/src/ipcpd/local/main.c +++ b/src/ipcpd/local/main.c @@ -119,7 +119,7 @@ static int ipcp_local_bootstrap(const struct ipcp_config * conf)          assert(conf);          assert(conf->type == THIS_TYPE); -        ipcpi.dir_hash_algo = conf->dif_info.dir_hash_algo; +        (void) conf;          ipcp_set_state(IPCP_OPERATIONAL); diff --git a/src/ipcpd/shim-eth-llc/main.c b/src/ipcpd/shim-eth-llc/main.c index 99d46a1d..28ab897b 100644 --- a/src/ipcpd/shim-eth-llc/main.c +++ b/src/ipcpd/shim-eth-llc/main.c @@ -758,8 +758,6 @@ static int eth_llc_ipcp_bootstrap(const struct ipcp_config * conf)          assert(conf);          assert(conf->type == THIS_TYPE); -        ipcpi.dir_hash_algo = conf->dif_info.dir_hash_algo; -          if (conf->if_name == NULL) {                  log_err("Interface name is NULL.");                  return -1; diff --git a/src/ipcpd/shim-udp/main.c b/src/ipcpd/shim-udp/main.c index 4ef3015a..ab199ffd 100644 --- a/src/ipcpd/shim-udp/main.c +++ b/src/ipcpd/shim-udp/main.c @@ -535,8 +535,6 @@ static int ipcp_udp_bootstrap(const struct ipcp_config * conf)          assert(conf);          assert(conf->type == THIS_TYPE); -        ipcpi.dir_hash_algo = conf->dif_info.dir_hash_algo; -          if (inet_ntop(AF_INET,                        &conf->ip_addr,                        ipstr, | 
