| 1 | /* |
| 2 | SPDX-FileCopyrightText: 2018 Billy Laws <blaws05@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_VXLAN_SETTING_P_H |
| 8 | #define NETWORKMANAGERQT_VXLAN_SETTING_P_H |
| 9 | |
| 10 | #include <QString> |
| 11 | |
| 12 | namespace NetworkManager |
| 13 | { |
| 14 | class VxlanSettingPrivate |
| 15 | { |
| 16 | public: |
| 17 | VxlanSettingPrivate(); |
| 18 | |
| 19 | QString name; |
| 20 | quint32 ageing; |
| 21 | quint32 destinationPort; |
| 22 | quint32 id; |
| 23 | bool l2Miss; |
| 24 | bool l3Miss; |
| 25 | bool learning; |
| 26 | quint32 limit; |
| 27 | QString local; |
| 28 | QString parent; |
| 29 | bool proxy; |
| 30 | QString remote; |
| 31 | bool rsc; |
| 32 | quint32 sourcePortMax; |
| 33 | quint32 sourcePortMin; |
| 34 | quint32 tos; |
| 35 | quint32 ttl; |
| 36 | }; |
| 37 | |
| 38 | } |
| 39 | |
| 40 | #endif // NETWORKMANAGERQT_VXLAN_SETTING_P_H |
| 41 | |