package paf
  Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
    Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Make.TLSSource
Source
type error = [ - | `Tls_alert of Tls.Packet.alert_type
- | `Tls_failure of Tls.Engine.failure
- | `Read of TCP.error
- | `Write of TCP.write_error
 ]include Mirage_flow.S
  with type error := error
   and type write_error := write_error
Source
val reneg : 
  ?authenticator:X509.Authenticator.t ->
  ?acceptable_cas:X509.Distinguished_name.t list ->
  ?cert:Tls.Config.own_cert ->
  ?drop:bool ->
  flow ->
  (unit, write_error) result Lwt.tSource
val client_of_flow : 
  Tls.Config.client ->
  ?host:[ `host ] Domain_name.t ->
  TCP.flow ->
  (flow, write_error) result Lwt.t