Deleted Added
full compact
sctp_pcb.h (179803) sctp_pcb.h (180387)
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_pcb.h,v 1.21 2005/07/16 01:18:47 suz 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_pcb.h,v 1.21 2005/07/16 01:18:47 suz Exp $ */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_pcb.h 179803 2008-06-15 12:31:23Z rrs $");
34__FBSDID("$FreeBSD: head/sys/netinet/sctp_pcb.h 180387 2008-07-09 16:45:30Z rrs $");
35
36#ifndef __sctp_pcb_h__
37#define __sctp_pcb_h__
38
39#include <netinet/sctp_os.h>
40#include <netinet/sctp.h>
41#include <netinet/sctp_constants.h>
42#include <netinet/sctp_sysctl.h>

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

445 struct mtx tcb_send_mtx;
446};
447
448
449
450#include <netinet/sctp_lock_bsd.h>
451
452
35
36#ifndef __sctp_pcb_h__
37#define __sctp_pcb_h__
38
39#include <netinet/sctp_os.h>
40#include <netinet/sctp.h>
41#include <netinet/sctp_constants.h>
42#include <netinet/sctp_sysctl.h>

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

445 struct mtx tcb_send_mtx;
446};
447
448
449
450#include <netinet/sctp_lock_bsd.h>
451
452
453#if defined(_KERNEL)
453/* TODO where to put non-_KERNEL things for __Userspace__? */
454#if defined(_KERNEL) || defined(__Userspace__)
454
455/* Attention Julian, this is the extern that
456 * goes with the base info. sctp_pcb.c has
457 * the real definition.
458 */
459extern struct sctp_base_info system_base_info;
460
461#ifdef INET6

--- 156 unchanged lines hidden ---
455
456/* Attention Julian, this is the extern that
457 * goes with the base info. sctp_pcb.c has
458 * the real definition.
459 */
460extern struct sctp_base_info system_base_info;
461
462#ifdef INET6

--- 156 unchanged lines hidden ---