diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2019-08-03 12:50:29 +0200 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2019-08-09 19:43:07 +0200 |
commit | 3339a629b41c50cca4232517b8249d55f462464d (patch) | |
tree | 3acfbaf91bf11deb1b10ff32b31332f593b17ea7 /include | |
parent | 9e8d603d14561095fb8d08871319a315d3bf6763 (diff) | |
download | ouroboros-3339a629b41c50cca4232517b8249d55f462464d.tar.gz ouroboros-3339a629b41c50cca4232517b8249d55f462464d.zip |
ipcpd: Fix length mismatch of encryption cypher
The cypher_s field in QoS was sometimes 32 and sometimes 16 bits. This
is now corrected to be 16 bits.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/qos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ouroboros/qos.h b/include/ouroboros/qos.h index f5becaa6..c34cb9f8 100644 --- a/include/ouroboros/qos.h +++ b/include/ouroboros/qos.h @@ -34,7 +34,7 @@ typedef struct qos_spec { uint32_t ber; /* Bit error rate, errors per billion bits */ uint8_t in_order; /* In-order delivery, enables FRCT */ uint32_t max_gap; /* In ms */ - uint32_t cypher_s; /* Cypher strength, 0 = no encryption */ + uint16_t cypher_s; /* Cypher strength, 0 = no encryption */ } qosspec_t; static const qosspec_t qos_raw = { |