aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_header.h
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2011-08-03 20:21:00 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2011-08-03 20:21:00 +0000
commitca85e9482aa4d92ab9da1852b69cc56ae1bec21c (patch)
tree6202f1b3524e68a30395d3b510eebc5a90fa3068 /sys/netinet/sctp_header.h
parentf36e5acfc1caf0df5adf0126cb8a6bc89ea2ee7e (diff)
downloadsrc-ca85e9482aa4d92ab9da1852b69cc56ae1bec21c.tar.gz
src-ca85e9482aa4d92ab9da1852b69cc56ae1bec21c.zip
The result of a joint work between rrs@ and myself at the IETF:
* Decouple the path supervision using a separate HB timer per path. * Add support for potentially failed state. * Bring back RTO.min to 1 second. * Accept packets on IP-addresses already announced via an ASCONF * While there: do some cleanups. Approved by: re@ MFC after: 2 months.
Notes
Notes: svn path=/head/; revision=224641
Diffstat (limited to 'sys/netinet/sctp_header.h')
-rw-r--r--sys/netinet/sctp_header.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/sctp_header.h b/sys/netinet/sctp_header.h
index dc8d91785057..1aff6a1485e9 100644
--- a/sys/netinet/sctp_header.h
+++ b/sys/netinet/sctp_header.h
@@ -98,9 +98,10 @@ struct sctp_heartbeat_info_param {
uint32_t time_value_2;
uint32_t random_value1;
uint32_t random_value2;
- uint16_t user_req;
uint8_t addr_family;
uint8_t addr_len;
+ /* make sure that this structure is 4 byte aligned */
+ uint8_t padding[2];
char address[SCTP_ADDRMAX];
} SCTP_PACKED;