Put configuration enums into separate headers

This commit is contained in:
Sergey Abramchuk
2017-04-26 17:00:27 +03:00
parent 410ccdd916
commit 73f0c12084
6 changed files with 124 additions and 73 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// OpenVPNIPv6Preference.h
// OpenVPN Adapter
//
// Created by Sergey Abramchuk on 26.04.17.
//
//
#import <Foundation/Foundation.h>
/**
IPv6 preference options
*/
typedef NS_ENUM(NSInteger, OpenVPNIPv6Preference) {
/// Request combined IPv4/IPv6 tunnel
OpenVPNIPv6PreferenceEnabled,
/// Disable IPv6, so tunnel will be IPv4-only
OpenVPNIPv6PreferenceDisabled,
/// Leave decision to server
OpenVPNIPv6PreferenceDefault
};