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_IP_TUNNEL_SETTING_P_H |
8 | #define NETWORKMANAGERQT_IP_TUNNEL_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | namespace NetworkManager |
13 | { |
14 | class IpTunnelSettingPrivate |
15 | { |
16 | public: |
17 | IpTunnelSettingPrivate(); |
18 | |
19 | QString name; |
20 | |
21 | NetworkManager::IpTunnelSetting::Mode mode; |
22 | bool pathMtuDiscovery; |
23 | quint32 encapsulationLimit; |
24 | NetworkManager::IpTunnelSetting::Flags flags; |
25 | quint32 flowLabel; |
26 | quint32 mtu; |
27 | quint32 tos; |
28 | quint32 ttl; |
29 | QString inputKey; |
30 | QString local; |
31 | QString outputKey; |
32 | QString parent; |
33 | QString remote; |
34 | }; |
35 | |
36 | } |
37 | |
38 | #endif // NETWORKMANAGERQT_IP_TUNNEL_SETTING_P_H |
39 | |