Deleted Added
full compact
sctp_pcb.h (228653) sctp_pcb.h (233660)
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved.
4 * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * a) Redistributions of source code must retain the above copyright notice,

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

27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 * THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32/* $KAME: sctp_pcb.h,v 1.21 2005/07/16 01:18:47 suz Exp $ */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved.
4 * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * a) Redistributions of source code must retain the above copyright notice,

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

27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 * THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32/* $KAME: sctp_pcb.h,v 1.21 2005/07/16 01:18:47 suz Exp $ */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/netinet/sctp_pcb.h 228653 2011-12-17 19:21:40Z tuexen $");
35__FBSDID("$FreeBSD: head/sys/netinet/sctp_pcb.h 233660 2012-03-29 13:36:53Z rrs $");
36
37#ifndef __sctp_pcb_h__
38#define __sctp_pcb_h__
39
40#include <netinet/sctp_os.h>
41#include <netinet/sctp.h>
42#include <netinet/sctp_constants.h>
43#include <netinet/sctp_sysctl.h>

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

394 struct sctpasochead sctp_asoc_list;
395#ifdef SCTP_TRACK_FREED_ASOCS
396 struct sctpasochead sctp_asoc_free_list;
397#endif
398 struct sctp_iterator *inp_starting_point_for_iterator;
399 uint32_t sctp_frag_point;
400 uint32_t partial_delivery_point;
401 uint32_t sctp_context;
36
37#ifndef __sctp_pcb_h__
38#define __sctp_pcb_h__
39
40#include <netinet/sctp_os.h>
41#include <netinet/sctp.h>
42#include <netinet/sctp_constants.h>
43#include <netinet/sctp_sysctl.h>

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

394 struct sctpasochead sctp_asoc_list;
395#ifdef SCTP_TRACK_FREED_ASOCS
396 struct sctpasochead sctp_asoc_free_list;
397#endif
398 struct sctp_iterator *inp_starting_point_for_iterator;
399 uint32_t sctp_frag_point;
400 uint32_t partial_delivery_point;
401 uint32_t sctp_context;
402 uint8_t local_strreset_support;
402 uint32_t sctp_cmt_on_off;
403 uint32_t sctp_ecn_enable;
404 struct sctp_nonpad_sndrcvinfo def_send;
405 /*-
406 * These three are here for the sosend_dgram
407 * (pkt, pkt_last and control).
408 * routine. However, I don't think anyone in
409 * the current FreeBSD kernel calls this. So

--- 240 unchanged lines hidden ---
403 uint32_t sctp_cmt_on_off;
404 uint32_t sctp_ecn_enable;
405 struct sctp_nonpad_sndrcvinfo def_send;
406 /*-
407 * These three are here for the sosend_dgram
408 * (pkt, pkt_last and control).
409 * routine. However, I don't think anyone in
410 * the current FreeBSD kernel calls this. So

--- 240 unchanged lines hidden ---