package ocamlnet

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type transport_layer_id = int
type inactive_data = {
  1. conn_trans : transport_layer_id;
  2. tls_stashed_endpoint : exn option;
}
type conn_state = [
  1. | `Active of < >
  2. | `Inactive of inactive_data
]
type peer = [
  1. | `Direct of string * int
  2. | `Direct_name of string * int
  3. | `Http_proxy of string * int
  4. | `Http_proxy_connect of (string * int) * (string * int)
  5. | `Socks5 of (string * int) * (string * int)
]
class type connection_cache = object ... end