Configuration
public struct Configuration : Equatable
Undocumented
-
Undocumented
Declaration
Swift
public var identifier: String
-
Undocumented
Declaration
Swift
public var host: String
-
Undocumented
Declaration
Swift
public var port: Int
-
Undocumented
Declaration
Swift
public var scheme: String { get }
-
Undocumented
Declaration
Swift
public var socketAddress: String { get }
-
Undocumented
Declaration
Swift
public var serverName: String?
-
Undocumented
Declaration
Swift
public var tls: TLS?
-
Undocumented
Declaration
Swift
public var supportsVersions: Set<Version.Major>
-
Undocumented
Declaration
Swift
public var supportsPipelining: Bool
-
Undocumented
Declaration
Swift
public var numberOfThreads: Int
-
Undocumented
Declaration
Swift
public var backlog: Int32
-
Undocumented
Declaration
Swift
public var reuseAddress: Bool
-
Undocumented
Declaration
Swift
public var tcpNoDelay: Bool
-
Undocumented
Declaration
Swift
public var maxMessagesPerRead: UInt
-
Undocumented
Declaration
Swift
public var requestDecompression: Decompression
-
Undocumented
Declaration
Swift
public var responseCompression: Compression
-
init(identifier:
host: port: serverName: tls: supportsVersions: supportsPipelining: numberOfThreads: backlog: reuseAddress: tcpNoDelay: maxMessagesPerRead: requestDecompression: responseCompression: ) Undocumented
Declaration
Swift
public init( identifier: String = "dev.chaqmoq.http", host: String = "127.0.0.1", port: Int = 8080, serverName: String? = nil, tls: TLS? = nil, supportsVersions: Set<Version.Major> = [.one, .two], supportsPipelining: Bool = false, numberOfThreads: Int = System.coreCount, backlog: Int32 = 256, reuseAddress: Bool = true, tcpNoDelay: Bool = true, maxMessagesPerRead: UInt = 16, requestDecompression: Decompression = .init(), responseCompression: Compression = .init() )
-
Undocumented
See moreDeclaration
Swift
public struct Compression : Equatable
-
Undocumented
See moreDeclaration
Swift
public struct Decompression : Equatable