package conduit-lwt-unix

  1. Overview
  2. Docs

Source file conduit_lwt_tls.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Client = struct
  let connect ?src:_ _host _sa =
    Lwt.fail_with "Tls not available"
end

module Server = struct
  let init' ?backlog:_ ?stop:_ ?timeout:_ _tls _sa _callback =
    Lwt.fail_with "Tls not available"

  let init ?backlog:_ ~certfile:_ ~keyfile:_ ?stop:_ ?timeout:_ _sa _callback =
    Lwt.fail_with "Tls not available"
end

let available = false
OCaml

Innovation. Community. Security.