├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── VPNDetector.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── VPNDetector-Example.xcscheme ├── VPNDetector.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── VPNDetector │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md ├── VPNDetector.podspec ├── VPNDetector ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── VPNDetector.swift ├── _Pods.xcodeproj └── meta └── record.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/VPNDetector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/VPNDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VPNDetector.xcodeproj/xcshareddata/xcschemes/VPNDetector-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector.xcodeproj/xcshareddata/xcschemes/VPNDetector-Example.xcscheme -------------------------------------------------------------------------------- /Example/VPNDetector.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VPNDetector.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/VPNDetector/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/AppDelegate.swift -------------------------------------------------------------------------------- /Example/VPNDetector/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/VPNDetector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/VPNDetector/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VPNDetector/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/Info.plist -------------------------------------------------------------------------------- /Example/VPNDetector/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/Example/VPNDetector/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/README.md -------------------------------------------------------------------------------- /VPNDetector.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/VPNDetector.podspec -------------------------------------------------------------------------------- /VPNDetector/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VPNDetector/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VPNDetector/Classes/VPNDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/VPNDetector/Classes/VPNDetector.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /meta/record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/VPNDetector/HEAD/meta/record.gif --------------------------------------------------------------------------------