VirtualBox

source: vbox/trunk/src/VBox/Main/src-server/os2/NetIf-os2.cpp@ 98292

Last change on this file since 98292 was 98103, checked in by vboxsync, 22 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/* $Id: NetIf-os2.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * Main - NetIfList, OS/2 implementation.
4 */
5
6/*
7 * Copyright (C) 2008-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29
30/*********************************************************************************************************************************
31* Header Files *
32*********************************************************************************************************************************/
33#define LOG_GROUP LOG_GROUP_MAIN
34
35#include <iprt/errcore.h>
36#include <list>
37
38#include "HostNetworkInterfaceImpl.h"
39#include "netif.h"
40
41int NetIfList(std::list <ComObjPtr<HostNetworkInterface> > &list)
42{
43 return VERR_NOT_IMPLEMENTED;
44}
45
46int NetIfEnableStaticIpConfig(VirtualBox *pVBox, HostNetworkInterface * pIf, ULONG ip, ULONG mask)
47{
48 return VERR_NOT_IMPLEMENTED;
49}
50
51int NetIfEnableStaticIpConfigV6(VirtualBox *pVBox, HostNetworkInterface * pIf, const Utf8Str &aIPV6Address, ULONG aIPV6MaskPrefixLength)
52{
53 return VERR_NOT_IMPLEMENTED;
54}
55
56int NetIfEnableDynamicIpConfig(VirtualBox *pVBox, HostNetworkInterface * pIf)
57{
58 return VERR_NOT_IMPLEMENTED;
59}
60
61
62int NetIfDhcpRediscover(VirtualBox *pVBox, HostNetworkInterface * pIf)
63{
64 return VERR_NOT_IMPLEMENTED;
65}
66
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