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

0001 /*
0002     SPDX-FileCopyrightText: 2012-2014 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_GRE_DEVICE_P_H
0008 #define NETWORKMANAGERQT_GRE_DEVICE_P_H
0009 
0010 #include "device_p.h"
0011 #include "gredevice.h"
0012 #include "manager.h"
0013 #include "manager_p.h"
0014 
0015 #include "gredeviceinterface.h"
0016 
0017 namespace NetworkManager
0018 {
0019 class GreDevicePrivate : public DevicePrivate
0020 {
0021     Q_OBJECT
0022 public:
0023     GreDevicePrivate(const QString &path, GreDevice *q);
0024     ~GreDevicePrivate() override;
0025 
0026     OrgFreedesktopNetworkManagerDeviceGreInterface iface;
0027     ushort inputFlags;
0028     ushort outputFlags;
0029     uint inputKey;
0030     uint outputKey;
0031     QString localEnd;
0032     QString remoteEnd;
0033     QString parent;
0034     bool pathMtuDiscovery;
0035     uchar tos;
0036     uchar ttl;
0037 
0038     Q_DECLARE_PUBLIC(GreDevice)
0039 protected:
0040     /**
0041      * When subclassing make sure to call the parent class method
0042      * if the property was not useful to your new class
0043      */
0044     void propertyChanged(const QString &property, const QVariant &value) override;
0045 };
0046 
0047 }
0048 
0049 #endif