summaryrefslogtreecommitdiffstats
path: root/lib/libc/net/sctp_send.3
diff options
context:
space:
mode:
authorbrucec <brucec@FreeBSD.org>2010-07-04 08:09:33 +0000
committerbrucec <brucec@FreeBSD.org>2010-07-04 08:09:33 +0000
commita605c9b153aa0f0382c3f95a4ac748647ced988a (patch)
tree9310a11693924c92910acb198807b35d908f9569 /lib/libc/net/sctp_send.3
parentcdee2d4b3b5052c225d92e3155cf64c04e3a9271 (diff)
downloadFreeBSD-src-a605c9b153aa0f0382c3f95a4ac748647ced988a.zip
FreeBSD-src-a605c9b153aa0f0382c3f95a4ac748647ced988a.tar.gz
Use ISO C99 integer types instead of the BSD-specific u_int*_t.
Approved by: rrs (mentor)
Diffstat (limited to 'lib/libc/net/sctp_send.3')
-rw-r--r--lib/libc/net/sctp_send.316
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/net/sctp_send.3 b/lib/libc/net/sctp_send.3
index 8a4142c..7318cbd 100644
--- a/lib/libc/net/sctp_send.3
+++ b/lib/libc/net/sctp_send.3
@@ -94,14 +94,14 @@ structure is used to control various SCTP features
and has the following format:
.Bd -literal
struct sctp_sndrcvinfo {
- u_int16_t sinfo_stream; /* Stream sending to */
- u_int16_t sinfo_ssn; /* valid for recv only */
- u_int16_t sinfo_flags; /* flags to control sending */
- u_int32_t sinfo_ppid; /* ppid field */
- u_int32_t sinfo_context; /* context field */
- u_int32_t sinfo_timetolive; /* timetolive for PR-SCTP */
- u_int32_t sinfo_tsn; /* valid for recv only */
- u_int32_t sinfo_cumtsn; /* valid for recv only */
+ uint16_t sinfo_stream; /* Stream sending to */
+ uint16_t sinfo_ssn; /* valid for recv only */
+ uint16_t sinfo_flags; /* flags to control sending */
+ uint32_t sinfo_ppid; /* ppid field */
+ uint32_t sinfo_context; /* context field */
+ uint32_t sinfo_timetolive; /* timetolive for PR-SCTP */
+ uint32_t sinfo_tsn; /* valid for recv only */
+ uint32_t sinfo_cumtsn; /* valid for recv only */
sctp_assoc_t sinfo_assoc_id; /* The association id */
};
.Ed
OpenPOWER on IntegriCloud