1 | /** @file
|
---|
2 | * VirtualBox - TAP for Windows definitions.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___VBox_tapwin32_h
|
---|
18 | #define ___VBox_tapwin32_h
|
---|
19 |
|
---|
20 | #define TAP_DRIVER_MAJOR_VERSION 8
|
---|
21 | #define TAP_DRIVER_MINOR_VERSION 2
|
---|
22 |
|
---|
23 | //=============
|
---|
24 | // TAP IOCTLs
|
---|
25 | //=============
|
---|
26 |
|
---|
27 | #pragma pack(4)
|
---|
28 | typedef struct
|
---|
29 | {
|
---|
30 | ULONG major;
|
---|
31 | ULONG minor;
|
---|
32 | ULONG debug;
|
---|
33 | } TAP_VERSION;
|
---|
34 |
|
---|
35 | typedef struct
|
---|
36 | {
|
---|
37 | LONG fConnect;
|
---|
38 | } TAP_MEDIASTATUS;
|
---|
39 |
|
---|
40 | typedef struct
|
---|
41 | {
|
---|
42 | ULONG cb;
|
---|
43 | PVOID pPacket;
|
---|
44 | } TAP_SCATTER_GATHER_ITEM;
|
---|
45 |
|
---|
46 | /** Arbitrary maximum for sanity checks. */
|
---|
47 | #define TAP_SCATTER_GATHER_MAX_PACKETS 64
|
---|
48 |
|
---|
49 | typedef struct
|
---|
50 | {
|
---|
51 | ULONG cPackets;
|
---|
52 | TAP_SCATTER_GATHER_ITEM aPacket[1];
|
---|
53 | } TAP_SCATTER_GATHER_LIST, *PTAP_SCATTER_GATHER_LIST;
|
---|
54 |
|
---|
55 | typedef struct
|
---|
56 | {
|
---|
57 | ULONG cPackets;
|
---|
58 | TAP_SCATTER_GATHER_ITEM aPacket[TAP_SCATTER_GATHER_MAX_PACKETS];
|
---|
59 | } TAP_SCATTER_GATHER_LIST_MAX, *PTAP_SCATTER_GATHER_LIST_MAX;
|
---|
60 |
|
---|
61 | #pragma pack()
|
---|
62 |
|
---|
63 | #define TAP_CONTROL_CODE(request,method) \
|
---|
64 | CTL_CODE (FILE_DEVICE_UNKNOWN, request, method, FILE_ANY_ACCESS)
|
---|
65 |
|
---|
66 | #define TAP_IOCTL_GET_MAC TAP_CONTROL_CODE (1, METHOD_BUFFERED)
|
---|
67 | #define TAP_IOCTL_GET_VERSION TAP_CONTROL_CODE (2, METHOD_BUFFERED)
|
---|
68 | #define TAP_IOCTL_GET_MTU TAP_CONTROL_CODE (3, METHOD_BUFFERED)
|
---|
69 | #define TAP_IOCTL_GET_INFO TAP_CONTROL_CODE (4, METHOD_BUFFERED)
|
---|
70 | #define TAP_IOCTL_CONFIG_POINT_TO_POINT TAP_CONTROL_CODE (5, METHOD_BUFFERED)
|
---|
71 | #define TAP_IOCTL_SET_MEDIA_STATUS TAP_CONTROL_CODE (6, METHOD_BUFFERED)
|
---|
72 | #define TAP_IOCTL_CONFIG_DHCP_MASQ TAP_CONTROL_CODE (7, METHOD_BUFFERED)
|
---|
73 | #define TAP_IOCTL_GET_LOG_LINE TAP_CONTROL_CODE (8, METHOD_BUFFERED)
|
---|
74 | #define TAP_IOCTL_CONFIG_DHCP_SET_OPT TAP_CONTROL_CODE (9, METHOD_BUFFERED)
|
---|
75 | /* Starting with version 8.2 */
|
---|
76 | #define TAP_IOCTL_TRANSFER_ETHPACKETS TAP_CONTROL_CODE (10, METHOD_BUFFERED)
|
---|
77 |
|
---|
78 |
|
---|
79 | #endif
|
---|