Deleted Added
full compact
sctp_output.h (189121) sctp_output.h (204141)
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 189121 2009-02-27 20:54:45Z rrs $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_output.h 204141 2010-02-20 20:30:40Z 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

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

106 struct sctp_association *asoc,
107 struct sctp_stream_out *strq, int holds_lock);
108
109
110void sctp_send_shutdown(struct sctp_tcb *, struct sctp_nets *);
111
112void sctp_send_shutdown_ack(struct sctp_tcb *, struct sctp_nets *);
113
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

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

106 struct sctp_association *asoc,
107 struct sctp_stream_out *strq, int holds_lock);
108
109
110void sctp_send_shutdown(struct sctp_tcb *, struct sctp_nets *);
111
112void sctp_send_shutdown_ack(struct sctp_tcb *, struct sctp_nets *);
113
114void sctp_send_shutdown_complete(struct sctp_tcb *, struct sctp_nets *);
114void sctp_send_shutdown_complete(struct sctp_tcb *, struct sctp_nets *, int);
115
116void
117sctp_send_shutdown_complete2(struct mbuf *, int, struct sctphdr *,
118 uint32_t, uint16_t);
119
120void sctp_send_asconf(struct sctp_tcb *, struct sctp_nets *, int addr_locked);
121
122void sctp_send_asconf_ack(struct sctp_tcb *);

--- 108 unchanged lines hidden ---
115
116void
117sctp_send_shutdown_complete2(struct mbuf *, int, struct sctphdr *,
118 uint32_t, uint16_t);
119
120void sctp_send_asconf(struct sctp_tcb *, struct sctp_nets *, int addr_locked);
121
122void sctp_send_asconf_ack(struct sctp_tcb *);

--- 108 unchanged lines hidden ---