diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-09-07 15:00:12 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-09-07 15:00:12 +0200 |
commit | ab83ed430081d2833faa31b7f1cf187b043e56be (patch) | |
tree | bc432f673bb453b8fc7789cff363b9b49e8fbaf5 /src/ipcpd/normal/dt_const.h | |
parent | dd1047b0e457c45d45a1b5b83972d4a75968cce2 (diff) | |
parent | 2cf4f88fc8b957c15ae93a2eb3e56ebdb07a0381 (diff) | |
download | ouroboros-ab83ed430081d2833faa31b7f1cf187b043e56be.tar.gz ouroboros-ab83ed430081d2833faa31b7f1cf187b043e56be.zip |
Merged in sandervrijders/ouroboros/be-shm-pci (pull request #247)
ipcpd: normal: Add operations to get and set the PCI
Diffstat (limited to 'src/ipcpd/normal/dt_const.h')
-rw-r--r-- | src/ipcpd/normal/dt_const.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/ipcpd/normal/dt_const.h b/src/ipcpd/normal/dt_const.h index b33f16c5..eda66838 100644 --- a/src/ipcpd/normal/dt_const.h +++ b/src/ipcpd/normal/dt_const.h @@ -25,14 +25,15 @@ #define IPCP_DT_CONST_H #include <stdint.h> +#include <stdbool.h> struct dt_const { - uint8_t addr_size; - uint8_t cep_id_size; - uint8_t pdu_length_size; - uint8_t seqno_size; - uint8_t ttl_size; - uint8_t chk_size; + uint8_t addr_size; + uint8_t cep_id_size; + uint8_t pdu_length_size; + uint8_t seqno_size; + bool has_ttl; + bool has_chk; uint32_t min_pdu_size; uint32_t max_pdu_size; }; |