VPNManagerStatus.h
486 Bytes
//
// VpnStatus.h
// VPN-HD
#import <Foundation/Foundation.h>
//
//
//#ifndef NS_ENUM
//#define NS_ENUM(_type, _name) enum _name : _type _name; enum _name : _type
//#endif
typedef NS_ENUM(NSInteger, VPNManagerStatus) {
VPNManagerStatusConnected = 0,
VPNManagerStatusConnecting = 1,
VPNManagerStatusDisconnected = 2,
VPNManagerStatusDisconnecting = 3,
VPNManagerStatusNoCertificate = 4,
#ifdef TARGET_OS_IOS
VPNManagerStatusNoCertificateSettings = 5,
#endif
};