1 | /* |
2 | SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef NETWORKMANAGERQT_BRIDGE_SETTING_P_H |
8 | #define NETWORKMANAGERQT_BRIDGE_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | namespace NetworkManager |
13 | { |
14 | class BridgeSettingPrivate |
15 | { |
16 | public: |
17 | BridgeSettingPrivate(); |
18 | |
19 | QString name; |
20 | QString interfaceName; |
21 | bool multicastSnooping; |
22 | bool stp; |
23 | quint32 priority; |
24 | quint32 forwardDelay; |
25 | quint32 helloTime; |
26 | quint32 maxAge; |
27 | quint32 agingTime; |
28 | QByteArray macAddress; |
29 | }; |
30 | |
31 | } |
32 | |
33 | #endif // NETWORKMANAGERQT_BRIDGE_SETTING_P_H |
34 | |