VirtualBox

source: vbox/trunk/src/VBox/Main/include/netif.h@ 25275

Last change on this file since 25275 was 22211, checked in by vboxsync, 15 years ago

HostImpl: Removed the return parameter from RemoveHostOnlyNetworkInterface()
and RemoveUSBDeviceFilter() methods so as to be consistent with Main API.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/** @file
2 * Main - Network Interfaces.
3 */
4
5/*
6 * Copyright (C) 2008-2009 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17 * Clara, CA 95054 USA or visit http://www.sun.com if you need
18 * additional information or have any questions.
19 */
20
21#ifndef ___netif_h
22#define ___netif_h
23
24#include <iprt/cdefs.h>
25#include <iprt/types.h>
26#include <iprt/net.h>
27#include <iprt/asm.h>
28
29#define VBOXNET_IPV4ADDR_DEFAULT "192.168.56.1"
30#define VBOXNET_IPV4MASK_DEFAULT "255.255.255.0"
31
32#define VBOXNET_MAX_SHORT_NAME 50
33
34#if 1
35/**
36 * Encapsulation type.
37 */
38typedef enum NETIFTYPE
39{
40 NETIF_T_UNKNOWN,
41 NETIF_T_ETHERNET,
42 NETIF_T_PPP,
43 NETIF_T_SLIP
44} NETIFTYPE;
45
46/**
47 * Current state of the interface.
48 */
49typedef enum NETIFSTATUS
50{
51 NETIF_S_UNKNOWN,
52 NETIF_S_UP,
53 NETIF_S_DOWN
54} NETIFSTATUS;
55
56/**
57 * Host Network Interface Information.
58 */
59typedef struct NETIFINFO
60{
61 NETIFINFO *pNext;
62 RTNETADDRIPV4 IPAddress;
63 RTNETADDRIPV4 IPNetMask;
64 RTNETADDRIPV6 IPv6Address;
65 RTNETADDRIPV6 IPv6NetMask;
66 BOOL bDhcpEnabled;
67 RTMAC MACAddress;
68 NETIFTYPE enmMediumType;
69 NETIFSTATUS enmStatus;
70 RTUUID Uuid;
71 char szShortName[VBOXNET_MAX_SHORT_NAME];
72 char szName[1];
73} NETIFINFO;
74
75/** Pointer to a network interface info. */
76typedef NETIFINFO *PNETIFINFO;
77/** Pointer to a const network interface info. */
78typedef NETIFINFO const *PCNETIFINFO;
79#endif
80
81int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list);
82int NetIfEnableStaticIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf, ULONG aOldIp, ULONG aNewIp, ULONG aMask);
83int NetIfEnableStaticIpConfigV6(VirtualBox *pVbox, HostNetworkInterface * pIf, IN_BSTR aOldIPV6Address, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
84int NetIfEnableDynamicIpConfig(VirtualBox *pVbox, HostNetworkInterface * pIf);
85int NetIfCreateHostOnlyNetworkInterface (VirtualBox *pVbox, IHostNetworkInterface **aHostNetworkInterface, IProgress **aProgress);
86int NetIfRemoveHostOnlyNetworkInterface (VirtualBox *pVbox, IN_GUID aId, IProgress **aProgress);
87int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *);
88int NetIfGetConfigByName(PNETIFINFO pInfo);
89int NetIfDhcpRediscover(VirtualBox *pVbox, HostNetworkInterface * pIf);
90
91DECLINLINE(Bstr) composeIPv6Address(PRTNETADDRIPV6 aAddrPtr)
92{
93 char szTmp[8*5] = "";
94
95 if (aAddrPtr->s.Lo || aAddrPtr->s.Hi)
96 RTStrPrintf(szTmp, sizeof(szTmp),
97 "%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
98 "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
99 aAddrPtr->au8[0], aAddrPtr->au8[1],
100 aAddrPtr->au8[2], aAddrPtr->au8[3],
101 aAddrPtr->au8[4], aAddrPtr->au8[5],
102 aAddrPtr->au8[6], aAddrPtr->au8[7],
103 aAddrPtr->au8[8], aAddrPtr->au8[9],
104 aAddrPtr->au8[10], aAddrPtr->au8[11],
105 aAddrPtr->au8[12], aAddrPtr->au8[13],
106 aAddrPtr->au8[14], aAddrPtr->au8[15]);
107 return Bstr(szTmp);
108}
109
110DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr)
111{
112 int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8);
113 return res != -1 ? res : 128;
114}
115
116DECLINLINE(int) prefixLength2IPv6Address(ULONG cPrefix, PRTNETADDRIPV6 aAddrPtr)
117{
118 if(cPrefix > 128)
119 return VERR_INVALID_PARAMETER;
120 if(!aAddrPtr)
121 return VERR_INVALID_PARAMETER;
122
123 memset(aAddrPtr, 0, sizeof(RTNETADDRIPV6));
124
125 ASMBitSetRange(aAddrPtr, 0, cPrefix);
126
127 return VINF_SUCCESS;
128}
129
130DECLINLINE(Bstr) composeHardwareAddress(PRTMAC aMacPtr)
131{
132 char szTmp[6*3];
133
134 RTStrPrintf(szTmp, sizeof(szTmp),
135 "%02x:%02x:%02x:%02x:%02x:%02x",
136 aMacPtr->au8[0], aMacPtr->au8[1],
137 aMacPtr->au8[2], aMacPtr->au8[3],
138 aMacPtr->au8[4], aMacPtr->au8[5]);
139 return Bstr(szTmp);
140}
141
142#endif /* ___netif_h */
143/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use