From 2cf4f88fc8b957c15ae93a2eb3e56ebdb07a0381 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Tue, 6 Sep 2016 10:29:02 +0200 Subject: ipcpd: normal: Add operations to get and set the PCI This adds the operations needed in the normal IPCP to get and set the Protocol Control Information. It allows to allocate or release space in the current DU. The struct pci can be serialized into newly allocate space. Vice versa, a struct pci can be deserialized given a DU. It allows for decreasing the TTL in the DU and for calculating the CRC32. The TTL and CRC32 can now be selected when creating a new DIF. --- src/ipcpd/ipcp.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/ipcpd/ipcp.c') diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c index 12111a51..ec5ab927 100644 --- a/src/ipcpd/ipcp.c +++ b/src/ipcpd/ipcp.c @@ -252,12 +252,12 @@ void * ipcp_main_loop(void * o) conf.cep_id_size = conf_msg->cep_id_size; conf.pdu_length_size = conf_msg->pdu_length_size; - conf.qos_id_size = conf_msg->qos_id_size; - conf.seqno_size = conf_msg->seqno_size; - conf.ttl_size = conf_msg->seqno_size; - conf.chk_size = conf_msg->chk_size; - conf.min_pdu_size = conf_msg->min_pdu_size; - conf.max_pdu_size = conf_msg->max_pdu_size; + conf.qos_id_size = conf_msg->qos_id_size; + conf.seqno_size = conf_msg->seqno_size; + conf.has_ttl = conf_msg->has_ttl; + conf.has_chk = conf_msg->has_chk; + conf.min_pdu_size = conf_msg->min_pdu_size; + conf.max_pdu_size = conf_msg->max_pdu_size; } if (conf_msg->ipcp_type == IPCP_SHIM_UDP) { conf.ip_addr = conf_msg->ip_addr; -- cgit v1.2.3