File indexing completed on 2024-04-14 03:57:38

0001 /*
0002     SPDX-FileCopyrightText: 2016 Jan Grulich <jgrulich@redhat.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_TUN_SETTING_P_H
0008 #define NETWORKMANAGERQT_TUN_SETTING_P_H
0009 
0010 #include <QString>
0011 
0012 namespace NetworkManager
0013 {
0014 class TunSettingPrivate
0015 {
0016 public:
0017     TunSettingPrivate();
0018 
0019     QString name;
0020     QString group;
0021     NetworkManager::TunSetting::Mode mode;
0022     bool multiQueue;
0023     QString owner;
0024     bool pi;
0025     bool vnetHdr;
0026 };
0027 
0028 }
0029 
0030 #endif // NETWORKMANAGERQT_TUN_SETTING_P_H