1 | /* |
2 | SPDX-FileCopyrightText: 2018 Pranav Gade <pranavgade20@gmail.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_TEAM_PORT_SETTING_P_H |
8 | #define NETWORKMANAGERQT_TEAM_PORT_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | typedef QList<QVariantMap> NMVariantMapList; |
13 | |
14 | namespace NetworkManager |
15 | { |
16 | class TeamPortSettingPrivate |
17 | { |
18 | public: |
19 | TeamPortSettingPrivate(); |
20 | |
21 | QString name; |
22 | |
23 | QString config; |
24 | qint32 lacpKey; |
25 | qint32 lacpPrio; |
26 | qint32 prio; |
27 | qint32 queueId; |
28 | bool sticky; |
29 | NMVariantMapList linkWatchers; |
30 | }; |
31 | |
32 | } |
33 | |
34 | #endif // NETWORKMANAGERQT_TEAM_PORT_SETTING_P_H |
35 | |