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

0001 /*
0002     SPDX-FileCopyrightText: 2012-2013 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_BRIDGE_SETTING_P_H
0008 #define NETWORKMANAGERQT_BRIDGE_SETTING_P_H
0009 
0010 #include <QString>
0011 
0012 namespace NetworkManager
0013 {
0014 class BridgeSettingPrivate
0015 {
0016 public:
0017     BridgeSettingPrivate();
0018 
0019     QString name;
0020     QString interfaceName;
0021     bool multicastSnooping;
0022     bool stp;
0023     quint32 priority;
0024     quint32 forwardDelay;
0025     quint32 helloTime;
0026     quint32 maxAge;
0027     quint32 agingTime;
0028     QByteArray macAddress;
0029 };
0030 
0031 }
0032 
0033 #endif // NETWORKMANAGERQT_BRIDGE_SETTING_P_H