summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/ribmgr.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-09-06 10:29:02 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-09-07 13:58:21 +0200
commit2cf4f88fc8b957c15ae93a2eb3e56ebdb07a0381 (patch)
tree1b3bd39aa4b84132559cc8032024f44a1e9c8015 /src/ipcpd/normal/ribmgr.c
parentee2235c62cf0c51f7188fdeb6ac283c1e2ea0335 (diff)
downloadouroboros-2cf4f88fc8b957c15ae93a2eb3e56ebdb07a0381.tar.gz
ouroboros-2cf4f88fc8b957c15ae93a2eb3e56ebdb07a0381.zip
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.
Diffstat (limited to 'src/ipcpd/normal/ribmgr.c')
-rw-r--r--src/ipcpd/normal/ribmgr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ipcpd/normal/ribmgr.c b/src/ipcpd/normal/ribmgr.c
index 007361fd..9733abc9 100644
--- a/src/ipcpd/normal/ribmgr.c
+++ b/src/ipcpd/normal/ribmgr.c
@@ -241,8 +241,8 @@ int ribmgr_cdap_write(struct cdap * instance,
rib->dtc.cep_id_size = msg->cep_id_size;
rib->dtc.pdu_length_size = msg->pdu_length_size;
rib->dtc.seqno_size = msg->seqno_size;
- rib->dtc.ttl_size = msg->ttl_size;
- rib->dtc.chk_size = msg->chk_size;
+ rib->dtc.has_ttl = msg->has_ttl;
+ rib->dtc.has_chk = msg->has_chk;
rib->dtc.min_pdu_size = msg->min_pdu_size;
rib->dtc.max_pdu_size = msg->max_pdu_size;
@@ -318,8 +318,8 @@ int ribmgr_cdap_start(struct cdap * instance,
stat_info.cep_id_size = rib->dtc.cep_id_size;
stat_info.pdu_length_size = rib->dtc.pdu_length_size;
stat_info.seqno_size = rib->dtc.seqno_size;
- stat_info.ttl_size = rib->dtc.ttl_size;
- stat_info.chk_size = rib->dtc.chk_size;
+ stat_info.has_ttl = rib->dtc.has_ttl;
+ stat_info.has_chk = rib->dtc.has_chk;
stat_info.min_pdu_size = rib->dtc.min_pdu_size;
stat_info.max_pdu_size = rib->dtc.max_pdu_size;
@@ -529,8 +529,8 @@ int ribmgr_bootstrap(struct dif_config * conf)
rib->dtc.cep_id_size = conf->cep_id_size;
rib->dtc.pdu_length_size = conf->pdu_length_size;
rib->dtc.seqno_size = conf->seqno_size;
- rib->dtc.ttl_size = conf->ttl_size;
- rib->dtc.chk_size = conf->chk_size;
+ rib->dtc.has_ttl = conf->has_ttl;
+ rib->dtc.has_chk = conf->has_chk;
rib->dtc.min_pdu_size = conf->min_pdu_size;
rib->dtc.max_pdu_size = conf->max_pdu_size;