Deleted Added
full compact
sctp_input.c (168859) sctp_input.c (168943)
1/*-
2 * Copyright (c) 2001-2007, 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_input.c,v 1.27 2005/03/06 16:04:17 itojun Exp $ */
32
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2007, 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_input.c,v 1.27 2005/03/06 16:04:17 itojun Exp $ */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_input.c 168859 2007-04-19 11:28:43Z rrs $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_input.c 168943 2007-04-22 11:06:27Z rrs $");
35
36#include <netinet/sctp_os.h>
37#include <netinet/sctp_var.h>
38#include <netinet/sctp_sysctl.h>
39#include <netinet/sctp_pcb.h>
40#include <netinet/sctp_header.h>
41#include <netinet/sctputil.h>
42#include <netinet/sctp_output.h>

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

282 asoc->strmin[i].stream_no = i;
283 asoc->strmin[i].last_sequence_delivered = 0xffff;
284 /*
285 * U-stream ranges will be set when the cookie is unpacked.
286 * Or for the INIT sender they are un set (if pr-sctp not
287 * supported) when the INIT-ACK arrives.
288 */
289 TAILQ_INIT(&asoc->strmin[i].inqueue);
35
36#include <netinet/sctp_os.h>
37#include <netinet/sctp_var.h>
38#include <netinet/sctp_sysctl.h>
39#include <netinet/sctp_pcb.h>
40#include <netinet/sctp_header.h>
41#include <netinet/sctputil.h>
42#include <netinet/sctp_output.h>

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

282 asoc->strmin[i].stream_no = i;
283 asoc->strmin[i].last_sequence_delivered = 0xffff;
284 /*
285 * U-stream ranges will be set when the cookie is unpacked.
286 * Or for the INIT sender they are un set (if pr-sctp not
287 * supported) when the INIT-ACK arrives.
288 */
289 TAILQ_INIT(&asoc->strmin[i].inqueue);
290 /*
291 * we are not on any wheel, pr-sctp streams will go on the
292 * wheel when they have data waiting for reorder.
293 */
294 asoc->strmin[i].next_spoke.tqe_next = 0;
295 asoc->strmin[i].next_spoke.tqe_prev = 0;
290 asoc->strmin[i].delivery_started = 0;
296 }
291 }
297
298 /*
299 * load_address_from_init will put the addresses into the
300 * association when the COOKIE is processed or the INIT-ACK is
301 * processed. Both types of COOKIE's existing and new call this
302 * routine. It will remove addresses that are no longer in the
303 * association (for the restarting case where addresses are
304 * removed). Up front when the INIT arrives we will discard it if it
305 * is a restart and new addresses have been added.

--- 4607 unchanged lines hidden ---
292 /*
293 * load_address_from_init will put the addresses into the
294 * association when the COOKIE is processed or the INIT-ACK is
295 * processed. Both types of COOKIE's existing and new call this
296 * routine. It will remove addresses that are no longer in the
297 * association (for the restarting case where addresses are
298 * removed). Up front when the INIT arrives we will discard it if it
299 * is a restart and new addresses have been added.

--- 4607 unchanged lines hidden ---