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:
- BidirectionalState
- ConfigurationError
- DNSResolver
- EndpointProtocol
- IOInterface
- IPv4Settings
@ -25,12 +26,22 @@ custom_categories:
- Session
- SocketType
- TunnelInterface
- name: OpenVPN
- name: AppExtension
children:
- GenericSocket
- GenericSocketDelegate
- InterfaceObserver
- Keychain
- KeychainError
- LinkProducer
- MemoryDestination
- NETCPSocket
- NETunnelInterface
- NEUDPSocket
- name: Protocols/OpenVPN
children:
- OpenVPN
- OpenVPNError
- OpenVPNSession
- OpenVPNSessionDelegate
- name: AppExtension
children:
- OpenVPNTunnelProvider

View File

@ -2,7 +2,7 @@
// Errors.swift
// 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.
//
// https://github.com/passepartoutvpn

View File

@ -2,7 +2,7 @@
// Session.swift
// 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.
//
// https://github.com/passepartoutvpn

View File

@ -36,7 +36,8 @@
import Foundation
extension DispatchQueue {
/// :nodoc:
public extension DispatchQueue {
func schedule(after: DispatchTimeInterval, block: @escaping () -> Void) {
asyncAfter(deadline: .now() + after, execute: block)
}