VirtualBox

source: vbox/trunk/include/VBox/tapwin32.h@ 561

Last change on this file since 561 was 561, checked in by vboxsync, 18 years ago

Update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1/** @file
2 * VirtualBox - TAP for Windows definitions.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung 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 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_tapwin32_h__
22#define __VBox_tapwin32_h__
23
24#define TAP_DRIVER_MAJOR_VERSION 8
25#define TAP_DRIVER_MINOR_VERSION 2
26
27//=============
28// TAP IOCTLs
29//=============
30
31#pragma pack(4)
32typedef struct
33{
34 ULONG major;
35 ULONG minor;
36 ULONG debug;
37} TAP_VERSION;
38
39typedef struct
40{
41 LONG fConnect;
42} TAP_MEDIASTATUS;
43
44typedef struct
45{
46 ULONG cb;
47 PVOID pPacket;
48} TAP_SCATTER_GATHER_ITEM;
49
50/** Arbitrary maximum for sanity checks. */
51#define TAP_SCATTER_GATHER_MAX_PACKETS 64
52
53typedef struct
54{
55 ULONG cPackets;
56 TAP_SCATTER_GATHER_ITEM aPacket[1];
57} TAP_SCATTER_GATHER_LIST, *PTAP_SCATTER_GATHER_LIST;
58
59typedef struct
60{
61 ULONG cPackets;
62 TAP_SCATTER_GATHER_ITEM aPacket[TAP_SCATTER_GATHER_MAX_PACKETS];
63} TAP_SCATTER_GATHER_LIST_MAX, *PTAP_SCATTER_GATHER_LIST_MAX;
64
65#pragma pack()
66
67#define TAP_CONTROL_CODE(request,method) \
68 CTL_CODE (FILE_DEVICE_UNKNOWN, request, method, FILE_ANY_ACCESS)
69
70#define TAP_IOCTL_GET_MAC TAP_CONTROL_CODE (1, METHOD_BUFFERED)
71#define TAP_IOCTL_GET_VERSION TAP_CONTROL_CODE (2, METHOD_BUFFERED)
72#define TAP_IOCTL_GET_MTU TAP_CONTROL_CODE (3, METHOD_BUFFERED)
73#define TAP_IOCTL_GET_INFO TAP_CONTROL_CODE (4, METHOD_BUFFERED)
74#define TAP_IOCTL_CONFIG_POINT_TO_POINT TAP_CONTROL_CODE (5, METHOD_BUFFERED)
75#define TAP_IOCTL_SET_MEDIA_STATUS TAP_CONTROL_CODE (6, METHOD_BUFFERED)
76#define TAP_IOCTL_CONFIG_DHCP_MASQ TAP_CONTROL_CODE (7, METHOD_BUFFERED)
77#define TAP_IOCTL_GET_LOG_LINE TAP_CONTROL_CODE (8, METHOD_BUFFERED)
78#define TAP_IOCTL_CONFIG_DHCP_SET_OPT TAP_CONTROL_CODE (9, METHOD_BUFFERED)
79/* Starting with version 8.2 */
80#define TAP_IOCTL_TRANSFER_ETHPACKETS TAP_CONTROL_CODE (10, METHOD_BUFFERED)
81
82
83#endif /* !__VBox_tapwin32_h__ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette