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:
rrs 2009-05-30 10:50:40 +00:00
parent 9e52569907
commit b2dff4f4a9

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;
};