summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authortuexen <tuexen@FreeBSD.org>2010-02-18 13:46:54 +0000
committertuexen <tuexen@FreeBSD.org>2010-02-18 13:46:54 +0000
commit93bada478f1c4bbf241686e05ae90eedebb88c5d (patch)
tree4cec099e8dba657e50b6426c73adad4bcebb7e10 /sys/netinet
parentaa07cd309152c701760f95950436f1dac1e00016 (diff)
downloadFreeBSD-src-93bada478f1c4bbf241686e05ae90eedebb88c5d.zip
FreeBSD-src-93bada478f1c4bbf241686e05ae90eedebb88c5d.tar.gz
Use uint32_t instead of u_long.
MFC after: 1 week
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/sctp_indata.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/sctp_indata.c b/sys/netinet/sctp_indata.c
index 56d174c..cdb78af 100644
--- a/sys/netinet/sctp_indata.c
+++ b/sys/netinet/sctp_indata.c
@@ -3513,7 +3513,7 @@ sctp_handle_segments(struct mbuf *m, int *offset, struct sctp_tcb *stcb, struct
static void
sctp_check_for_revoked(struct sctp_tcb *stcb,
struct sctp_association *asoc, uint32_t cumack,
- u_long biggest_tsn_acked)
+ uint32_t biggest_tsn_acked)
{
struct sctp_tmit_chunk *tp1;
int tot_revoked = 0;
@@ -3595,7 +3595,7 @@ sctp_check_for_revoked(struct sctp_tcb *stcb,
static void
sctp_strike_gap_ack_chunks(struct sctp_tcb *stcb, struct sctp_association *asoc,
- u_long biggest_tsn_acked, u_long biggest_tsn_newly_acked, u_long this_sack_lowest_newack, int accum_moved)
+ uint32_t biggest_tsn_acked, uint32_t biggest_tsn_newly_acked, uint32_t this_sack_lowest_newack, int accum_moved)
{
struct sctp_tmit_chunk *tp1;
int strike_flag = 0;
@@ -4781,7 +4781,7 @@ again:
static void
sctp_check_for_nr_revoked(struct sctp_tcb *stcb,
struct sctp_association *asoc, uint32_t cumack,
- u_long biggest_tsn_acked)
+ uint32_t biggest_tsn_acked)
{
struct sctp_tmit_chunk *tp1;
OpenPOWER on IntegriCloud