Deleted Added
full compact
sctp_output.h (204141) sctp_output.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_output.h,v 1.14 2005/03/06 16:04:18 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_output.h,v 1.14 2005/03/06 16:04:18 itojun Exp $ */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_output.h 204141 2010-02-20 20:30:40Z tuexen $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_output.h 206137 2010-04-03 15:40:14Z tuexen $");
35
36#ifndef __sctp_output_h__
37#define __sctp_output_h__
38
39#include <netinet/sctp_header.h>
40
41#if defined(_KERNEL) || defined(__Userspace__)
42

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

150 SCTP_UNUSED
151#endif
152);
153
154void send_forward_tsn(struct sctp_tcb *, struct sctp_association *);
155
156void sctp_send_sack(struct sctp_tcb *);
157
35
36#ifndef __sctp_output_h__
37#define __sctp_output_h__
38
39#include <netinet/sctp_header.h>
40
41#if defined(_KERNEL) || defined(__Userspace__)
42

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

150 SCTP_UNUSED
151#endif
152);
153
154void send_forward_tsn(struct sctp_tcb *, struct sctp_association *);
155
156void sctp_send_sack(struct sctp_tcb *);
157
158/* EY 05/07/08 if nr_sacks used, the following function will be called instead of sctp_send_sack */
159void sctp_send_nr_sack(struct sctp_tcb *);
160
161int sctp_send_hb(struct sctp_tcb *, int, struct sctp_nets *);
162
163void sctp_send_ecn_echo(struct sctp_tcb *, struct sctp_nets *, uint32_t);
164
165
166void
167sctp_send_packet_dropped(struct sctp_tcb *, struct sctp_nets *, struct mbuf *,
168 int, int);

--- 62 unchanged lines hidden ---
158int sctp_send_hb(struct sctp_tcb *, int, struct sctp_nets *);
159
160void sctp_send_ecn_echo(struct sctp_tcb *, struct sctp_nets *, uint32_t);
161
162
163void
164sctp_send_packet_dropped(struct sctp_tcb *, struct sctp_nets *, struct mbuf *,
165 int, int);

--- 62 unchanged lines hidden ---