OpenVPN
ovpn_dco_freebsd.h
Go to the documentation of this file.
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2021 Rubicon Communications, LLC (Netgate)
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  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #ifndef _NET_IF_OVPN_H_
29 #define _NET_IF_OVPN_H_
30 
31 #include <sys/types.h>
32 #include <netinet/in.h>
33 
34 /* Maximum size of an ioctl request. */
35 #define OVPN_MAX_REQUEST_SIZE 4096
36 
40 };
41 
45 };
46 
50 };
51 
56 };
57 
58 #define OVPN_NEW_PEER _IO('D', 1)
59 #define OVPN_DEL_PEER _IO('D', 2)
60 #define OVPN_GET_STATS _IO('D', 3)
61 #define OVPN_NEW_KEY _IO('D', 4)
62 #define OVPN_SWAP_KEYS _IO('D', 5)
63 #define OVPN_DEL_KEY _IO('D', 6)
64 #define OVPN_SET_PEER _IO('D', 7)
65 #define OVPN_START_VPN _IO('D', 8)
66 #define OVPN_SEND_PKT _IO('D', 9)
67 #define OVPN_POLL_PKT _IO('D', 10)
68 #define OVPN_GET_PKT _IO('D', 11)
69 #define OVPN_SET_IFMODE _IO('D', 12)
70 #define OVPN_GET_PEER_STATS _IO('D', 13)
71 
72 #endif /* ifndef _NET_IF_OVPN_H_ */
ovpn_del_reason
ovpn_del_reason
Definition: ovpn_dco_freebsd.h:42
OVPN_NOTIF_ROTATE_KEY
@ OVPN_NOTIF_ROTATE_KEY
Definition: ovpn_dco_freebsd.h:39
OVPN_CIPHER_ALG_NONE
@ OVPN_CIPHER_ALG_NONE
Definition: ovpn_dco_freebsd.h:53
OVPN_DEL_REASON_REQUESTED
@ OVPN_DEL_REASON_REQUESTED
Definition: ovpn_dco_freebsd.h:43
ovpn_key_slot
ovpn_key_slot
Definition: ovpn_dco_freebsd.h:47
OVPN_KEY_SLOT_PRIMARY
@ OVPN_KEY_SLOT_PRIMARY
Definition: ovpn_dco_freebsd.h:48
ovpn_notif_type
ovpn_notif_type
Definition: ovpn_dco_freebsd.h:37
OVPN_CIPHER_ALG_AES_GCM
@ OVPN_CIPHER_ALG_AES_GCM
Definition: ovpn_dco_freebsd.h:54
OVPN_DEL_REASON_TIMEOUT
@ OVPN_DEL_REASON_TIMEOUT
Definition: ovpn_dco_freebsd.h:44
ovpn_key_cipher
ovpn_key_cipher
Definition: ovpn_dco_freebsd.h:52
OVPN_KEY_SLOT_SECONDARY
@ OVPN_KEY_SLOT_SECONDARY
Definition: ovpn_dco_freebsd.h:49
OVPN_CIPHER_ALG_CHACHA20_POLY1305
@ OVPN_CIPHER_ALG_CHACHA20_POLY1305
Definition: ovpn_dco_freebsd.h:55
OVPN_NOTIF_DEL_PEER
@ OVPN_NOTIF_DEL_PEER
Definition: ovpn_dco_freebsd.h:38