diff --git a/.jazzy.yaml b/.jazzy.yaml index 074996b..1bff291 100644 --- a/.jazzy.yaml +++ b/.jazzy.yaml @@ -19,6 +19,9 @@ custom_categories: - TunnelInterface - SessionProxy - SessionProxyDelegate + - SessionReply + - IPv4Settings + - IPv6Settings - SessionError - name: AppExtension children: diff --git a/TunnelKit/Sources/Core/SessionProxy+Configuration.swift b/TunnelKit/Sources/Core/SessionProxy+Configuration.swift index 963bad6..07d0c1e 100644 --- a/TunnelKit/Sources/Core/SessionProxy+Configuration.swift +++ b/TunnelKit/Sources/Core/SessionProxy+Configuration.swift @@ -127,15 +127,15 @@ extension SessionProxy { /// The path to the optional CA for TLS negotiation (PEM format). public var caPath: String? - /// Sets compression framing, disabled by default. - public var compressionFraming: CompressionFraming - /// The path to the optional client certificate for TLS negotiation (PEM format). public var clientCertificatePath: String? /// The path to the private key for the certificate at `clientCertificatePath` (PEM format). public var clientKeyPath: String? + /// Sets compression framing, disabled by default. + public var compressionFraming: CompressionFraming + /// Sends periodical keep-alive packets if set. public var keepAliveInterval: TimeInterval?