Package-level declarations
HTTP code shared between clients and servers.
Types
Link copied to clipboard
data class SslSettings(val keyStore: URL? = null, val keyStorePassword: String = "", val trustStore: URL? = null, val trustStorePassword: String = "", val clientAuth: Boolean = false)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Parse query string such as paramA=valueA¶mB=valueB
into a map of several key-value pairs separated by '&' where key is the param name before '=' as String and value is the string after '=' as a list of String (as a query parameter may have many values).
Link copied to clipboard