File indexing completed on 2024-04-21 04:00:03

0001 /*
0002     SPDX-FileCopyrightText: 2018 Pranav Gade <pranavgade20@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef NETWORKMANAGERQT_IP_TUNNEL_SETTING_P_H
0008 #define NETWORKMANAGERQT_IP_TUNNEL_SETTING_P_H
0009 
0010 #include <QString>
0011 
0012 namespace NetworkManager
0013 {
0014 class IpTunnelSettingPrivate
0015 {
0016 public:
0017     IpTunnelSettingPrivate();
0018 
0019     QString name;
0020 
0021     NetworkManager::IpTunnelSetting::Mode mode;
0022     bool pathMtuDiscovery;
0023     quint32 encapsulationLimit;
0024     NetworkManager::IpTunnelSetting::Flags flags;
0025     quint32 flowLabel;
0026     quint32 mtu;
0027     quint32 tos;
0028     quint32 ttl;
0029     QString inputKey;
0030     QString local;
0031     QString outputKey;
0032     QString parent;
0033     QString remote;
0034 };
0035 
0036 }
0037 
0038 #endif // NETWORKMANAGERQT_IP_TUNNEL_SETTING_P_H