Deleted Added
full compact
sctputil.h (170744) sctputil.h (171477)
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * a) Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.

--- 18 unchanged lines hidden (view full) ---

27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28 * THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31
32/* $KAME: sctputil.h,v 1.15 2005/03/06 16:04:19 itojun Exp $ */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * a) Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.

--- 18 unchanged lines hidden (view full) ---

27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28 * THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31
32/* $KAME: sctputil.h,v 1.15 2005/03/06 16:04:19 itojun Exp $ */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/netinet/sctputil.h 170744 2007-06-14 22:59:04Z rrs $");
35__FBSDID("$FreeBSD: head/sys/netinet/sctputil.h 171477 2007-07-17 20:58:26Z rrs $");
36#ifndef __sctputil_h__
37#define __sctputil_h__
38
39
40#if defined(_KERNEL)
41
42
43#ifdef SCTP_ASOCLOG_OF_TSNS

--- 71 unchanged lines hidden (view full) ---

115
116int find_next_best_mtu(int);
117
118void
119 sctp_timeout_handler(void *);
120
121uint32_t
122sctp_calculate_rto(struct sctp_tcb *, struct sctp_association *,
36#ifndef __sctputil_h__
37#define __sctputil_h__
38
39
40#if defined(_KERNEL)
41
42
43#ifdef SCTP_ASOCLOG_OF_TSNS

--- 71 unchanged lines hidden (view full) ---

115
116int find_next_best_mtu(int);
117
118void
119 sctp_timeout_handler(void *);
120
121uint32_t
122sctp_calculate_rto(struct sctp_tcb *, struct sctp_association *,
123 struct sctp_nets *, struct timeval *);
123 struct sctp_nets *, struct timeval *, int);
124
125uint32_t sctp_calculate_len(struct mbuf *);
126
127caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *);
128
129struct sctp_paramhdr *
130sctp_get_next_param(struct mbuf *, int,
131 struct sctp_paramhdr *, int);

--- 224 unchanged lines hidden ---
124
125uint32_t sctp_calculate_len(struct mbuf *);
126
127caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *);
128
129struct sctp_paramhdr *
130sctp_get_next_param(struct mbuf *, int,
131 struct sctp_paramhdr *, int);

--- 224 unchanged lines hidden ---