diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2013-08-12 13:52:15 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2013-08-12 13:52:15 +0000 |
commit | 2c9c61defa0fe79c50e37d7d704a26e687a520e3 (patch) | |
tree | f54b17174baf3a37b715efa1f1650298649d77ce /sys/netinet/sctp_pcb.h | |
parent | bb5236e4e230be95dd44c0e6b997361923973711 (diff) |
Make the features a 64-bit value instead of 32-bit.
This will allow an easier integration of the support
for NDATA.
While there, do also some minor cleanups.
Obtained from: rrs@
MFC after: 2 weeks
Notes
Notes:
svn path=/head/; revision=254248
Diffstat (limited to 'sys/netinet/sctp_pcb.h')
-rw-r--r-- | sys/netinet/sctp_pcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_pcb.h b/sys/netinet/sctp_pcb.h index 91807c7cd90b..8045765c4c5e 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -388,8 +388,8 @@ struct sctp_inpcb { /* back pointer to our socket */ struct socket *sctp_socket; + uint64_t sctp_features; /* Feature flags */ uint32_t sctp_flags; /* INP state flag set */ - uint32_t sctp_features; /* Feature flags */ uint32_t sctp_mobility_features; /* Mobility Feature flags */ struct sctp_pcb sctp_ep;/* SCTP ep data */ /* head of the hash of all associations */ |