Update jazzy YAML
This commit is contained in:
parent
adcae1686e
commit
2ddf712176
17
.jazzy.yaml
17
.jazzy.yaml
|
@ -16,6 +16,7 @@ custom_categories:
|
||||||
children:
|
children:
|
||||||
- BidirectionalState
|
- BidirectionalState
|
||||||
- ConfigurationError
|
- ConfigurationError
|
||||||
|
- DNSResolver
|
||||||
- EndpointProtocol
|
- EndpointProtocol
|
||||||
- IOInterface
|
- IOInterface
|
||||||
- IPv4Settings
|
- IPv4Settings
|
||||||
|
@ -25,12 +26,22 @@ custom_categories:
|
||||||
- Session
|
- Session
|
||||||
- SocketType
|
- SocketType
|
||||||
- TunnelInterface
|
- TunnelInterface
|
||||||
- name: OpenVPN
|
- name: AppExtension
|
||||||
|
children:
|
||||||
|
- GenericSocket
|
||||||
|
- GenericSocketDelegate
|
||||||
|
- InterfaceObserver
|
||||||
|
- Keychain
|
||||||
|
- KeychainError
|
||||||
|
- LinkProducer
|
||||||
|
- MemoryDestination
|
||||||
|
- NETCPSocket
|
||||||
|
- NETunnelInterface
|
||||||
|
- NEUDPSocket
|
||||||
|
- name: Protocols/OpenVPN
|
||||||
children:
|
children:
|
||||||
- OpenVPN
|
- OpenVPN
|
||||||
- OpenVPNError
|
- OpenVPNError
|
||||||
- OpenVPNSession
|
- OpenVPNSession
|
||||||
- OpenVPNSessionDelegate
|
- OpenVPNSessionDelegate
|
||||||
- name: AppExtension
|
|
||||||
children:
|
|
||||||
- OpenVPNTunnelProvider
|
- OpenVPNTunnelProvider
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Errors.swift
|
// Errors.swift
|
||||||
// TunnelKit
|
// TunnelKit
|
||||||
//
|
//
|
||||||
// Created by Davide De Rosa on 05/19/19.
|
// Created by Davide De Rosa on 5/19/19.
|
||||||
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
||||||
//
|
//
|
||||||
// https://github.com/passepartoutvpn
|
// https://github.com/passepartoutvpn
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Session.swift
|
// Session.swift
|
||||||
// TunnelKit
|
// TunnelKit
|
||||||
//
|
//
|
||||||
// Created by Davide De Rosa on 05/19/19.
|
// Created by Davide De Rosa on 5/19/19.
|
||||||
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
||||||
//
|
//
|
||||||
// https://github.com/passepartoutvpn
|
// https://github.com/passepartoutvpn
|
||||||
|
|
|
@ -36,7 +36,8 @@
|
||||||
|
|
||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
extension DispatchQueue {
|
/// :nodoc:
|
||||||
|
public extension DispatchQueue {
|
||||||
func schedule(after: DispatchTimeInterval, block: @escaping () -> Void) {
|
func schedule(after: DispatchTimeInterval, block: @escaping () -> Void) {
|
||||||
asyncAfter(deadline: .now() + after, execute: block)
|
asyncAfter(deadline: .now() + after, execute: block)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue