Deleted Added
full compact
sctp_pcb.h (283724) sctp_pcb.h (284633)
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *

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

26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *

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

26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: stable/10/sys/netinet/sctp_pcb.h 283724 2015-05-29 12:54:30Z tuexen $");
34__FBSDID("$FreeBSD: stable/10/sys/netinet/sctp_pcb.h 284633 2015-06-20 08:25:27Z tuexen $");
35
36#ifndef _NETINET_SCTP_PCB_H_
37#define _NETINET_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>

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

425 */
426 struct mbuf *pkt, *pkt_last;
427 struct mbuf *control;
428 struct mtx inp_mtx;
429 struct mtx inp_create_mtx;
430 struct mtx inp_rdata_mtx;
431 int32_t refcount;
432 uint32_t def_vrf_id;
35
36#ifndef _NETINET_SCTP_PCB_H_
37#define _NETINET_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>

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

425 */
426 struct mbuf *pkt, *pkt_last;
427 struct mbuf *control;
428 struct mtx inp_mtx;
429 struct mtx inp_create_mtx;
430 struct mtx inp_rdata_mtx;
431 int32_t refcount;
432 uint32_t def_vrf_id;
433 uint16_t fibnum;
433 uint32_t total_sends;
434 uint32_t total_recvs;
435 uint32_t last_abort_code;
436 uint32_t total_nospaces;
437 struct sctpasochead *sctp_asocidhash;
438 u_long hashasocidmark;
439 uint32_t sctp_associd_counter;
440

--- 223 unchanged lines hidden ---
434 uint32_t total_sends;
435 uint32_t total_recvs;
436 uint32_t last_abort_code;
437 uint32_t total_nospaces;
438 struct sctpasochead *sctp_asocidhash;
439 u_long hashasocidmark;
440 uint32_t sctp_associd_counter;
441

--- 223 unchanged lines hidden ---