missing check
[oweals/gnunet.git] / src / include / tap-windows.h
1 /*\r
2  *  TAP-Windows -- A kernel driver to provide virtual tap\r
3  *                 device functionality on Windows.\r
4  *\r
5  *  This code was inspired by the CIPE-Win32 driver by Damion K. Wilson.\r
6  *\r
7  *  This source code is Copyright (C) 2002-2010 OpenVPN Technologies, Inc.,\r
8  *  and is released under the GPL version 2 (see below).\r
9  *\r
10  *  This program is free software; you can redistribute it and/or modify\r
11  *  it under the terms of the GNU General Public License version 2\r
12  *  as published by the Free Software Foundation.\r
13  *\r
14  *  This program is distributed in the hope that it will be useful,\r
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
17  *  GNU General Public License for more details.\r
18  *\r
19  *  You should have received a copy of the GNU General Public License\r
20  *  along with this program (see the file COPYING included with this\r
21  *  distribution); if not, write to the Free Software Foundation, Inc.,\r
22  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
23  */\r
24 /**\r
25  * @file include/tap-windows.h\r
26  * @brief TAP32 virtual network driver defines\r
27  * @attention This file is part of openvpn and for kept\r
28  *            as a separate file to allow easier upgrading.\r
29  */\r
30 #ifndef __TAP_WIN_H\r
31 #define __TAP_WIN_H\r
32 \r
33 /*\r
34  * =============\r
35  * TAP IOCTLs\r
36  * =============\r
37  */\r
38 \r
39 #define TAP_WIN_CONTROL_CODE(request,method) \\r
40   CTL_CODE (FILE_DEVICE_UNKNOWN, request, method, FILE_ANY_ACCESS)\r
41 \r
42 /* Present in 8.1 */\r
43 \r
44 #define TAP_WIN_IOCTL_GET_MAC               TAP_WIN_CONTROL_CODE (1, METHOD_BUFFERED)\r
45 #define TAP_WIN_IOCTL_GET_VERSION           TAP_WIN_CONTROL_CODE (2, METHOD_BUFFERED)\r
46 #define TAP_WIN_IOCTL_GET_MTU               TAP_WIN_CONTROL_CODE (3, METHOD_BUFFERED)\r
47 #define TAP_WIN_IOCTL_GET_INFO              TAP_WIN_CONTROL_CODE (4, METHOD_BUFFERED)\r
48 #define TAP_WIN_IOCTL_CONFIG_POINT_TO_POINT TAP_WIN_CONTROL_CODE (5, METHOD_BUFFERED)\r
49 #define TAP_WIN_IOCTL_SET_MEDIA_STATUS      TAP_WIN_CONTROL_CODE (6, METHOD_BUFFERED)\r
50 #define TAP_WIN_IOCTL_CONFIG_DHCP_MASQ      TAP_WIN_CONTROL_CODE (7, METHOD_BUFFERED)\r
51 #define TAP_WIN_IOCTL_GET_LOG_LINE          TAP_WIN_CONTROL_CODE (8, METHOD_BUFFERED)\r
52 #define TAP_WIN_IOCTL_CONFIG_DHCP_SET_OPT   TAP_WIN_CONTROL_CODE (9, METHOD_BUFFERED)\r
53 \r
54 /* Added in 8.2 */\r
55 \r
56 /* obsoletes TAP_WIN_IOCTL_CONFIG_POINT_TO_POINT */\r
57 #define TAP_WIN_IOCTL_CONFIG_TUN            TAP_WIN_CONTROL_CODE (10, METHOD_BUFFERED)\r
58 \r
59 /*\r
60  * =================\r
61  * Registry keys\r
62  * =================\r
63  */\r
64 \r
65 #define ADAPTER_KEY "SYSTEM\\CurrentControlSet\\Control\\Class\\{4D36E972-E325-11CE-BFC1-08002BE10318}"\r
66 \r
67 #define NETWORK_CONNECTIONS_KEY "SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}"\r
68 \r
69 /*\r
70  * ======================\r
71  * Filesystem prefixes\r
72  * ======================\r
73  */\r
74 \r
75 #define USERMODEDEVICEDIR "\\\\.\\Global\\"\r
76 #define SYSDEVICEDIR      "\\Device\\"\r
77 #define USERDEVICEDIR     "\\DosDevices\\Global\\"\r
78 #define TAP_WIN_SUFFIX    ".tap"\r
79 \r
80 #endif\r