Make sctp_uio user to kernel structure match the

socket-api draft. Two fields were uint32_t when they
should have been uint16_t.

Reported by Jonathan Leighton at U-del.
This commit is contained in:
Randall Stewart 2009-05-30 10:50:40 +00:00
parent 6911f596a1
commit 667d2d3cbb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193088

View File

@ -68,8 +68,8 @@ struct sctp_event_subscribe {
* ancillary data structures
*/
struct sctp_initmsg {
uint32_t sinit_num_ostreams;
uint32_t sinit_max_instreams;
uint16_t sinit_num_ostreams;
uint16_t sinit_max_instreams;
uint16_t sinit_max_attempts;
uint16_t sinit_max_init_timeo;
};