summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/vpn/vpndata.h
blob: 5c986aade137a5f56086e1c1ed9e4b69fd549c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef VPN_DATA_H
#define VPN_DATA_H

#include <qstring.h>
typedef struct VPNData {
      QString Device;
      QString LockFile;
      long Speed;
      short Parity;
      short DataBits;
      short StopBits;
      bool HardwareControl;
      bool SoftwareControl;
} VPNData_t; 

#endif