1 | /* $Id: UINetworkManagerUtils.h 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UINetworkManagerUtils namespace declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017-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 | #ifndef FEQT_INCLUDED_SRC_networkmanager_UINetworkManagerUtils_h
|
---|
29 | #define FEQT_INCLUDED_SRC_networkmanager_UINetworkManagerUtils_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* Qt includes: */
|
---|
35 | #include <QStringList>
|
---|
36 |
|
---|
37 |
|
---|
38 | /** Network Manager: Host network utilities. */
|
---|
39 | namespace UINetworkManagerUtils
|
---|
40 | {
|
---|
41 | /** Converts IPv4 address from QString to quint32. */
|
---|
42 | quint32 ipv4FromQStringToQuint32(const QString &strAddress);
|
---|
43 | /** Converts IPv4 address from quint32 to QString. */
|
---|
44 | QString ipv4FromQuint32ToQString(quint32 uAddress);
|
---|
45 |
|
---|
46 | /** Increments network @a uAddress by 1 avoiding 0/255 values. */
|
---|
47 | quint32 incrementNetworkAddress(quint32 uAddress);
|
---|
48 | /** Decrements network @a uAddress by 1 avoiding 0/255 values. */
|
---|
49 | quint32 decrementNetworkAddress(quint32 uAddress);
|
---|
50 | /** Advances network @a uAddress by 1 avoiding 0/255 values.
|
---|
51 | * @param fForward Brings whether advance should
|
---|
52 | * go forward or backward otherwise. */
|
---|
53 | quint32 advanceNetworkAddress(quint32 uAddress, bool fForward);
|
---|
54 |
|
---|
55 | /** Calculates DHCP server proposal on the basis of the passed @a strInterfaceAddress and @a strInterfaceMask. */
|
---|
56 | QStringList makeDhcpServerProposal(const QString &strInterfaceAddress, const QString &strInterfaceMask);
|
---|
57 | }
|
---|
58 |
|
---|
59 | /* Using this namespace where included: */
|
---|
60 | using namespace UINetworkManagerUtils;
|
---|
61 |
|
---|
62 | #endif /* !FEQT_INCLUDED_SRC_networkmanager_UINetworkManagerUtils_h */
|
---|
63 |
|
---|