Update jazzy YAML

This commit is contained in:
Davide De Rosa 2019-05-23 21:54:34 +02:00
parent adcae1686e
commit 2ddf712176
4 changed files with 18 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)
} }