Update TunnelKit to fix IPv4 endianness
Hopefully once and for all!
This commit is contained in:
parent
66cfab678b
commit
aa6af8acb3
|
@ -63,7 +63,7 @@ struct Pool: Codable, Comparable, CustomStringConvertible {
|
|||
// XXX: inefficient, can't easily use lazy on struct
|
||||
func addresses(sorted: Bool) -> [String] {
|
||||
var addrs = (sorted ? numericAddresses.sorted() : numericAddresses).map {
|
||||
return DNSResolver.string(fromIPv4: UInt32(bigEndian: $0))
|
||||
return DNSResolver.string(fromIPv4: $0)
|
||||
}
|
||||
addrs.insert(hostname, at: 0)
|
||||
return addrs
|
||||
|
|
6
Podfile
6
Podfile
|
@ -2,9 +2,9 @@ source 'https://github.com/cocoapods/specs.git'
|
|||
use_frameworks!
|
||||
|
||||
def shared_pods
|
||||
pod 'TunnelKit', '~> 1.3.0'
|
||||
#pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '9c989da'
|
||||
#pod 'TunnelKit', :path => '../tunnelkit'
|
||||
#pod 'TunnelKit', '~> 1.3.0'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => 'caea662'
|
||||
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
||||
end
|
||||
|
||||
target 'Passepartout-iOS' do
|
||||
|
|
27
Podfile.lock
27
Podfile.lock
|
@ -2,33 +2,42 @@ PODS:
|
|||
- MBProgressHUD (1.1.0)
|
||||
- OpenSSL-Apple (1.1.0i-v2)
|
||||
- SwiftyBeaver (1.6.1)
|
||||
- TunnelKit (1.3.0):
|
||||
- TunnelKit/AppExtension (= 1.3.0)
|
||||
- TunnelKit/Core (= 1.3.0)
|
||||
- TunnelKit/AppExtension (1.3.0):
|
||||
- TunnelKit (1.3.1):
|
||||
- TunnelKit/AppExtension (= 1.3.1)
|
||||
- TunnelKit/Core (= 1.3.1)
|
||||
- TunnelKit/AppExtension (1.3.1):
|
||||
- SwiftyBeaver
|
||||
- TunnelKit/Core
|
||||
- TunnelKit/Core (1.3.0):
|
||||
- TunnelKit/Core (1.3.1):
|
||||
- OpenSSL-Apple (~> 1.1.0h)
|
||||
- SwiftyBeaver
|
||||
|
||||
DEPENDENCIES:
|
||||
- MBProgressHUD
|
||||
- TunnelKit (~> 1.3.0)
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `caea662`)
|
||||
|
||||
SPEC REPOS:
|
||||
https://github.com/cocoapods/specs.git:
|
||||
- MBProgressHUD
|
||||
- OpenSSL-Apple
|
||||
- SwiftyBeaver
|
||||
- TunnelKit
|
||||
|
||||
EXTERNAL SOURCES:
|
||||
TunnelKit:
|
||||
:commit: caea662
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
CHECKOUT OPTIONS:
|
||||
TunnelKit:
|
||||
:commit: caea662
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9
|
||||
OpenSSL-Apple: a93b8f2eec8783ff40d9a9304de180ab68bb647c
|
||||
SwiftyBeaver: ccfcdf85a04d429f1633f668650b0ce8020bda3a
|
||||
TunnelKit: 8e747cac28959ebfdfa4eeab589c933f1856c0fb
|
||||
TunnelKit: f98fb7d88642eda94c42007dbc501903c469a891
|
||||
|
||||
PODFILE CHECKSUM: 6e8d763f62d6de73b2704ad87c725d3116d051df
|
||||
PODFILE CHECKSUM: a86923e57746e09e04296a49bdc0ad3520fd700f
|
||||
|
||||
COCOAPODS: 1.6.0.beta.2
|
||||
|
|
Loading…
Reference in New Issue