File indexing completed on 2024-04-28 15:33:17

0001 /*
0002     SPDX-FileCopyrightText: 2018 Billy Laws <blaws05@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_VXLAN_SETTING_P_H
0008 #define NETWORKMANAGERQT_VXLAN_SETTING_P_H
0009 
0010 #include <QString>
0011 
0012 namespace NetworkManager
0013 {
0014 class VxlanSettingPrivate
0015 {
0016 public:
0017     VxlanSettingPrivate();
0018 
0019     QString name;
0020     quint32 ageing;
0021     quint32 destinationPort;
0022     quint32 id;
0023     bool l2Miss;
0024     bool l3Miss;
0025     bool learning;
0026     quint32 limit;
0027     QString local;
0028     QString parent;
0029     bool proxy;
0030     QString remote;
0031     bool rsc;
0032     quint32 sourcePortMax;
0033     quint32 sourcePortMin;
0034     quint32 tos;
0035     quint32 ttl;
0036 };
0037 
0038 }
0039 
0040 #endif // NETWORKMANAGERQT_VXLAN_SETTING_P_H