summaryrefslogtreecommitdiff
path: root/include/ouroboros/common.h
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@intec.ugent.be>2016-02-26 12:24:12 +0100
committerDimitri Staessens <dimitri.staessens@intec.ugent.be>2016-02-26 12:25:37 +0100
commit66c25ea6e07852522430acfcd37a3a98abf6ac9e (patch)
tree173ad57de3f7df8c34f02006d7b9f63dd86efd0d /include/ouroboros/common.h
parentb1d605781449aaa7c32b28e0b3466deaec3c576f (diff)
downloadouroboros-66c25ea6e07852522430acfcd37a3a98abf6ac9e.tar.gz
ouroboros-66c25ea6e07852522430acfcd37a3a98abf6ac9e.zip
include: Updated common.h
various fixes based on discussion on bitbucket
Diffstat (limited to 'include/ouroboros/common.h')
-rw-r--r--include/ouroboros/common.h40
1 files changed, 14 insertions, 26 deletions
diff --git a/include/ouroboros/common.h b/include/ouroboros/common.h
index d1ddddfa..c416df97 100644
--- a/include/ouroboros/common.h
+++ b/include/ouroboros/common.h
@@ -47,39 +47,27 @@ typedef struct {
struct qos_spec {
uint32_t delay;
uint32_t jitter;
-
};
-struct dtp_const {
- /* pci field lengths, bits */
- /* most significant bit indicates head (0) or tail (1) */
- uint8_t addr_sz;
- uint8_t cep_id_sz;
- uint8_t pdu_length_sz;
- /* not sure about port_id_sz... port_id's are not
- part of dtp and should not go on the wire */
- /* uint8_t port_id_sz; */
- uint8_t qos_id_sz;
- uint8_t seqnr_sz;
- /* uint8_t ctrl_sqnum_sz; is this crap in the spec?? */
-
- /* one will need this for hardware alignment */
- uint8_t pad_head_sz;
- uint8_t pad_tail_sz;
-};
+struct dt_const {
+ /* constants for dtp */
+ uint8_t addr_size;
+ uint8_t cep_id_size;
+ uint8_t pdu_length_size;
+ uint8_t qos_id_size;
+ uint8_t seqno_size;
+ /* uint8_t ctrl_sqnum_sz; is this in the spec?? */
-struct dup_const {
- /* pci field lengths, bits */
- /* most significant bit indicates head (0) or tail (1) */
- uint8_t ttl_sz;
- uint8_t chk_sz;
+ /* constants for dup */
+ uint8_t ttl_size;
+ uint8_t chk_size;
};
/* FIXME: What should be configurable in the DIF? */
struct dif_info {
/* values, octets */
- uint32_t min_pdu_sz;
- uint32_t max_pdu_sz;
+ uint32_t min_pdu_size;
+ uint32_t max_pdu_size;
};
-#endif
+#endif /* OUROBOROS_COMMON_H */