Deleted Added
full compact
sctp_structs.h (170056) sctp_structs.h (170181)
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_structs.h,v 1.13 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_structs.h,v 1.13 2005/03/06 16:04:18 itojun Exp $ */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_structs.h 170056 2007-05-28 11:17:24Z rrs $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_structs.h 170181 2007-06-01 11:19:54Z rrs $");
35
36#ifndef __sctp_structs_h__
37#define __sctp_structs_h__
38
39#include <netinet/sctp_os.h>
40#include <netinet/sctp_header.h>
41#include <netinet/sctp_auth.h>
42

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

593 * any req on the list.
594 */
595 struct sctp_resethead resetHead;
596
597 /* queue of chunks waiting to be sent into the local stack */
598 struct sctp_readhead pending_reply_queue;
599
600 uint32_t vrf_id;
35
36#ifndef __sctp_structs_h__
37#define __sctp_structs_h__
38
39#include <netinet/sctp_os.h>
40#include <netinet/sctp_header.h>
41#include <netinet/sctp_auth.h>
42

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

593 * any req on the list.
594 */
595 struct sctp_resethead resetHead;
596
597 /* queue of chunks waiting to be sent into the local stack */
598 struct sctp_readhead pending_reply_queue;
599
600 uint32_t vrf_id;
601 uint32_t table_id;
602
603 uint32_t cookie_preserve_req;
604 /* ASCONF next seq I am sending out, inits at init-tsn */
605 uint32_t asconf_seq_out;
606 /* ASCONF last received ASCONF from peer, starts at peer's TSN-1 */
607 uint32_t asconf_seq_in;
608
609 /* next seq I am sending in str reset messages */

--- 339 unchanged lines hidden ---
601
602 uint32_t cookie_preserve_req;
603 /* ASCONF next seq I am sending out, inits at init-tsn */
604 uint32_t asconf_seq_out;
605 /* ASCONF last received ASCONF from peer, starts at peer's TSN-1 */
606 uint32_t asconf_seq_in;
607
608 /* next seq I am sending in str reset messages */

--- 339 unchanged lines hidden ---