/usr/lib/ocaml/rpc-ssl/rpc_ssl.mli is in libocamlnet-ssl-ocaml-dev 3.4.1-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | (* $Id: rpc_ssl.mli 289 2006-04-30 17:50:29Z gerd $ *)
(** Securing RPC by SSL
*
* The following configuration objects allow it to encapsulate a
* stream with SSL. Note that this is only possible with stream
* sockets.
*)
(** {1 Clients}
*
* SSL is only supported for the new [Rpc_client.create2] interface.
* If you are using [ocamlrpcgen] look for the generated
* [create_client2] functions.
*
* Use [`Socket(Rpc.Tcp, connector, (Rpc_ssl.ssl_client_socket_config ctx))]
* as [mode2] argument for the [create2] function. The [connector] can
* be any supported connector. Pass the SSL context as [ctx].
*)
class ssl_client_socket_config : Ssl.context -> Rpc_client.socket_config
(** SSL configuration class for clients *)
val ssl_client_socket_config : Ssl.context -> Rpc_client.socket_config
(** SSL configuration object for clients *)
(** {1 Servers}
*
* SSL is only supported for the new [Rpc_server.create2] interface.
* If you are using [ocamlrpcgen] new-style functions are generated
* when you pass the -srv2 argument.
*
* Use [`Socket(Rpc.Tcp, connector, (Rpc_ssl.ssl_server_socket_config ctx))]
* as [mode2] argument for the [create2] function. The [connector] can
* be any supported connector. Pass the SSL context as [ctx].
*)
class ssl_server_socket_config :
?get_peer_user_name:(Ssl.context -> Ssl.socket -> string option) ->
Ssl.context -> Rpc_server.socket_config
(** SSL configuration class for servers *)
val ssl_server_socket_config :
?get_peer_user_name:(Ssl.context -> Ssl.socket -> string option) ->
Ssl.context -> Rpc_server.socket_config
(** SSL configuration object for servers *)
|