= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package obus
-
obus
-
obus.hal
-
obus.network_manager
-
obus.notification
-
obus.ppx
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Handle authentication mechanisms
List of capabilities clients/servers may support
val capabilities : capability list
List of all capabilities
Communication
Creates a stream for authentication.
- parameter recv
must read a complete line, ending with
"\r\n"
,
- parameter send
must send the given line.
val stream_of_channels :
(Lwt_io.input_channel * Lwt_io.output_channel) ->
stream
Creates a stream from a pair of channels
val stream_of_fd : Lwt_unix.file_descr -> stream
Creates a stream from a file descriptor. Note that the stream created by this function is not really efficient because it has to read characters one by one to ensure it does not consume too much.
Maximum length accepted for lines of the authentication protocol. Beyond this limit, authentication will fail.
module Client : sig ... end
Client-side authentication
module Server : sig ... end
Server-side authentication
ON THIS PAGE