diff options
Diffstat (limited to 'sys/netinet/sctp_uio.h')
-rw-r--r-- | sys/netinet/sctp_uio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/sctp_uio.h b/sys/netinet/sctp_uio.h index b8d2ecd..dc79939 100644 --- a/sys/netinet/sctp_uio.h +++ b/sys/netinet/sctp_uio.h @@ -565,9 +565,9 @@ struct sctp_sack_info { struct sctp_cwnd_args { struct sctp_nets *net; /* network to *//* FIXME: LP64 issue */ uint32_t cwnd_new_value;/* cwnd in k */ - uint32_t inflight; /* flightsize in k */ uint32_t pseudo_cumack; - uint32_t cwnd_augment; /* increment to it */ + uint16_t inflight; /* flightsize in k */ + uint16_t cwnd_augment; /* increment to it */ uint8_t meets_pseudo_cumack; uint8_t need_new_pseudo_cumack; uint8_t cnt_in_send; @@ -1042,6 +1042,7 @@ struct xsctp_raddr { uint8_t heartbeat_enabled; /* sctpAssocLocalRemEntry 4 */ struct sctp_timeval start_time; /* sctpAssocLocalRemEntry 8 */ uint32_t extra_padding[8]; /* future */ + }; #define SCTP_MAX_LOGGING_SIZE 30000 |