Deleted Added
full compact
sctp_indata.h (202526) sctp_indata.h (206137)
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.

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

26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
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/* $KAME: sctp_indata.h,v 1.9 2005/03/06 16:04:17 itojun Exp $ */
32
33#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.

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

26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
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/* $KAME: sctp_indata.h,v 1.9 2005/03/06 16:04:17 itojun Exp $ */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_indata.h 202526 2010-01-17 21:00:28Z tuexen $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_indata.h 206137 2010-04-03 15:40:14Z tuexen $");
35
36#ifndef __sctp_indata_h__
37#define __sctp_indata_h__
38
39#if defined(_KERNEL) || defined(__Userspace__)
40
41struct sctp_queued_to_read *
42sctp_build_readq_entry(struct sctp_tcb *stcb,

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

116sctp_update_acked(struct sctp_tcb *, struct sctp_shutdown_chunk *,
117 struct sctp_nets *, int *);
118
119int
120sctp_process_data(struct mbuf **, int, int *, int, struct sctphdr *,
121 struct sctp_inpcb *, struct sctp_tcb *,
122 struct sctp_nets *, uint32_t *);
123
35
36#ifndef __sctp_indata_h__
37#define __sctp_indata_h__
38
39#if defined(_KERNEL) || defined(__Userspace__)
40
41struct sctp_queued_to_read *
42sctp_build_readq_entry(struct sctp_tcb *stcb,

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

116sctp_update_acked(struct sctp_tcb *, struct sctp_shutdown_chunk *,
117 struct sctp_nets *, int *);
118
119int
120sctp_process_data(struct mbuf **, int, int *, int, struct sctphdr *,
121 struct sctp_inpcb *, struct sctp_tcb *,
122 struct sctp_nets *, uint32_t *);
123
124void sctp_sack_check(struct sctp_tcb *, int, int, int *);
124void sctp_slide_mapping_arrays(struct sctp_tcb *stcb);
125
125
126void sctp_sack_check(struct sctp_tcb *, int, int *);
127
126#endif
127#endif
128#endif
129#endif