Liking cljdoc? Tell your friends :D

org.httpkit.sni-client

Provides an SNI-capable SSL configurer and client, Ref. #335. In a separate namespace from org.httpkit.client so that http-kit can retain backwards-compatibility with JVM < 8.

Provides an SNI-capable SSL configurer and client, Ref. #335.
In a separate namespace from `org.httpkit.client` so that
http-kit can retain backwards-compatibility with JVM < 8.
raw docstring

default-clientclj

Like org.httpkit.client/default-client, but provides SNI support using ssl-configurer. NB Hostname verification currently requires Java version >= 11.

Like `org.httpkit.client/default-client`, but provides SNI support using `ssl-configurer`. NB Hostname verification currently requires Java version >= 11.
sourceraw docstring

ssl-configurerclj

(ssl-configurer ssl-engine uri)
(ssl-configurer {:keys [hostname-verification? sni?]
                 :as opts
                 :or {hostname-verification?
                        (>= (clojure.core/deref java-version_) 11)
                      sni? true}}
                ssl-engine
                uri)

SNI-capable SSL configurer. May be used as an argument to org.httpkit.client/make-client: (make-client :ssl-configurer (ssl-configurer))

SNI-capable SSL configurer.
May be used as an argument to `org.httpkit.client/make-client`:
 (make-client :ssl-configurer (ssl-configurer))
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close