Deleted Added
full compact
sctp_structs.h (225676) sctp_structs.h (226222)
1/*-
2 * Copyright (c) 2001-2008, 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 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *

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

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/* $KAME: sctp_structs.h,v 1.13 2005/03/06 16:04:18 itojun Exp $ */
34
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2008, 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 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *

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

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/* $KAME: sctp_structs.h,v 1.13 2005/03/06 16:04:18 itojun Exp $ */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/netinet/sctp_structs.h 225676 2011-09-19 21:47:20Z tuexen $");
36__FBSDID("$FreeBSD: head/sys/netinet/sctp_structs.h 226222 2011-10-10 16:31:18Z tuexen $");
37
38#ifndef __sctp_structs_h__
39#define __sctp_structs_h__
40
41#include <netinet/sctp_os.h>
42#include <netinet/sctp_header.h>
43#include <netinet/sctp_auth.h>
44

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

186};
187
188#define SCTP_ITERATOR_STOP_CUR_IT 0x00000004
189#define SCTP_ITERATOR_STOP_CUR_INP 0x00000008
190
191struct sctp_net_route {
192 sctp_rtentry_t *ro_rt;
193 void *ro_lle;
37
38#ifndef __sctp_structs_h__
39#define __sctp_structs_h__
40
41#include <netinet/sctp_os.h>
42#include <netinet/sctp_header.h>
43#include <netinet/sctp_auth.h>
44

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

186};
187
188#define SCTP_ITERATOR_STOP_CUR_IT 0x00000004
189#define SCTP_ITERATOR_STOP_CUR_INP 0x00000008
190
191struct sctp_net_route {
192 sctp_rtentry_t *ro_rt;
193 void *ro_lle;
194 void *ro_ia;
195 int ro_flags;
194 union sctp_sockstore _l_addr; /* remote peer addr */
195 struct sctp_ifa *_s_addr; /* our selected src addr */
196};
197
198struct htcp {
199 uint16_t alpha; /* Fixed point arith, << 7 */
200 uint8_t beta; /* Fixed point arith, << 7 */
201 uint8_t modeswitch; /* Delay modeswitch until we had at least one

--- 1032 unchanged lines hidden ---
196 union sctp_sockstore _l_addr; /* remote peer addr */
197 struct sctp_ifa *_s_addr; /* our selected src addr */
198};
199
200struct htcp {
201 uint16_t alpha; /* Fixed point arith, << 7 */
202 uint8_t beta; /* Fixed point arith, << 7 */
203 uint8_t modeswitch; /* Delay modeswitch until we had at least one

--- 1032 unchanged lines hidden ---