xref: /openbsd-src/sys/netinet/ip_ipcomp.h (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
1 /* $OpenBSD: ip_ipcomp.h,v 1.3 2001/07/17 12:35:35 jjbg Exp $ */
2 
3 /*
4  * Copyright (c) 2001 Jean-Jacques Bernard-Gundol (jj@wabbitt.org)
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *   notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *   notice, this list of conditions and the following disclaimer in the
14  *   documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *   derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 /* IP payload compression protocol (IPComp), see RFC 2393 */
31 
32 #ifndef _NETINET_IP_IPCOMP_H_
33 #define _NETINET_IP_IPCOMP_H_
34 
35 struct ipcompstat {
36 	u_int32_t	ipcomps_hdrops;	/* Packet shorter than header shows */
37 	u_int32_t	ipcomps_nopf;	/* Protocol family not supported */
38 	u_int32_t	ipcomps_notdb;
39 	u_int32_t	ipcomps_badkcr;
40 	u_int32_t	ipcomps_qfull;
41 	u_int32_t	ipcomps_noxform;
42 	u_int32_t	ipcomps_wrap;
43 	u_int32_t	ipcomps_input;	/* Input IPcomp packets */
44 	u_int32_t	ipcomps_output;	/* Output IPcomp packets */
45 	u_int32_t	ipcomps_invalid;	/* Trying to use an invalid
46 						 * TDB */
47 	u_int64_t	ipcomps_ibytes;	/* Input bytes */
48 	u_int64_t	ipcomps_obytes;	/* Output bytes */
49 	u_int32_t	ipcomps_toobig;	/* Packet got larger than
50 					 * IP_MAXPACKET */
51 	u_int32_t	ipcomps_pdrops;	/* Packet blocked due to policy */
52 	u_int32_t	ipcomps_crypto;	/* "Crypto" processing failure */
53 };
54 
55 /* IPCOMP header */
56 struct ipcomp {
57 	u_int8_t	ipcomp_nh;	/* Next header */
58 	u_int8_t	ipcomp_flags;	/* Flags: reserved field: 0 */
59 	u_int16_t	ipcomp_cpi;	/* Compression Parameter Index,
60 					 * Network order */
61 };
62 
63 /* Length of IPCOMP header */
64 #define IPCOMP_HLENGTH		4
65 
66 /*
67  * Names for IPCOMP sysctl objects
68  */
69 #define IPCOMPCTL_ENABLE	1	/* Enable COMP processing */
70 #define IPCOMPCTL_MAXID		2
71 
72 #define IPCOMPCTL_NAMES { \
73 	{ 0, 0 }, \
74 	{ "enable", CTLTYPE_INT}, \
75 }
76 
77 #ifdef _KERNEL
78 extern int ipcomp_enable;
79 struct ipcompstat ipcompstat;
80 #endif				/* _KERNEL */
81 #endif	/* _NETINET_IP_IPCOMP_H_ */
82