HttpServerSettings
data class HttpServerSettings( val bindAddress: InetAddress = InetAddress.getLoopbackAddress(), val bindPort: Int = 2010, val contextPath: String = "", val protocol: HttpProtocol = HTTP, val sslSettings: SslSettings? = null, val banner: String? = null, val features: Set<HttpServerFeature> = emptySet())
Content copied to clipboard
Holds server settings info.
Constructors
Link copied to clipboard
fun HttpServerSettings( bindAddress: InetAddress = InetAddress.getLoopbackAddress(), bindPort: Int = 2010, contextPath: String = "", protocol: HttpProtocol = HTTP, sslSettings: SslSettings? = null, banner: String? = null, features: Set<HttpServerFeature> = emptySet())
Content copied to clipboard