package awa
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val get_pkt_hdr_pkt_len : Cstruct.t -> Cstruct.uint32
val set_pkt_hdr_pkt_len : Cstruct.t -> Cstruct.uint32 -> unit
val get_pkt_hdr_pad_len : Cstruct.t -> Cstruct.uint8
val set_pkt_hdr_pad_len : Cstruct.t -> Cstruct.uint8 -> unit
val hexdump_pkt_hdr : Cstruct.t -> unit
val guard_sshlen : int -> (unit, string) result
type message_id =
| MSG_DISCONNECT
| MSG_IGNORE
| MSG_UNIMPLEMENTED
| MSG_DEBUG
| MSG_SERVICE_REQUEST
| MSG_SERVICE_ACCEPT
| MSG_KEXINIT
| MSG_NEWKEYS
| MSG_KEX_0
| MSG_KEX_1
| MSG_KEX_2
| MSG_KEX_3
| MSG_KEX_4
| MSG_USERAUTH_REQUEST
| MSG_USERAUTH_FAILURE
| MSG_USERAUTH_SUCCESS
| MSG_USERAUTH_BANNER
| MSG_USERAUTH_PK_OK
| MSG_GLOBAL_REQUEST
| MSG_REQUEST_SUCCESS
| MSG_REQUEST_FAILURE
| MSG_CHANNEL_OPEN
| MSG_CHANNEL_OPEN_CONFIRMATION
| MSG_CHANNEL_OPEN_FAILURE
| MSG_CHANNEL_WINDOW_ADJUST
| MSG_CHANNEL_DATA
| MSG_CHANNEL_EXTENDED_DATA
| MSG_CHANNEL_EOF
| MSG_CHANNEL_CLOSE
| MSG_CHANNEL_REQUEST
| MSG_CHANNEL_SUCCESS
| MSG_CHANNEL_FAILURE
| MSG_VERSION
val int_to_message_id : int -> message_id option
val message_id_to_int : message_id -> int
val compare_message_id : message_id -> message_id -> int
val message_id_to_string : message_id -> string
val string_to_message_id : string -> message_id option
val sexp_of_message_id : message_id -> Sexplib.Sexp.t
val message_id_of_sexp : Sexplib.Sexp.t -> message_id
type kexinit = {
kex_algs : string list;
server_host_key_algs : string list;
encryption_algs_ctos : string list;
encryption_algs_stoc : string list;
mac_algs_ctos : string list;
mac_algs_stoc : string list;
compression_algs_ctos : string list;
compression_algs_stoc : string list;
languages_ctos : string list;
languages_stoc : string list;
first_kex_packet_follows : bool;
rawkex : Cstruct_sexp.t;
}
val kexinit_of_sexp : Sexplib0.Sexp.t -> kexinit
val sexp_of_kexinit : kexinit -> Sexplib0.Sexp.t
type disconnect_code =
| DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT
| DISCONNECT_PROTOCOL_ERROR
| DISCONNECT_KEY_EXCHANGE_FAILED
| DISCONNECT_RESERVED
| DISCONNECT_MAC_ERROR
| DISCONNECT_COMPRESSION_ERROR
| DISCONNECT_SERVICE_NOT_AVAILABLE
| DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED
| DISCONNECT_HOST_KEY_NOT_VERIFIABLE
| DISCONNECT_CONNECTION_LOST
| DISCONNECT_BY_APPLICATION
| DISCONNECT_TOO_MANY_CONNECTIONS
| DISCONNECT_AUTH_CANCELLED_BY_USER
| DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE
| DISCONNECT_ILLEGAL_USER_NAME
val disconnect_code_to_int : disconnect_code -> int32
val compare_disconnect_code : disconnect_code -> disconnect_code -> int
val disconnect_code_to_string : disconnect_code -> string
val string_to_disconnect_code : string -> disconnect_code option
val sexp_of_disconnect_code : disconnect_code -> Sexplib.Sexp.t
val disconnect_code_of_sexp : Sexplib.Sexp.t -> disconnect_code
val int_to_disconnect_code : int32 -> disconnect_code
val int_to_channel_open_code : int32 -> channel_open_code option
val channel_open_code_to_int : channel_open_code -> int32
val compare_channel_open_code : channel_open_code -> channel_open_code -> int
val channel_open_code_to_string : channel_open_code -> string
val string_to_channel_open_code : string -> channel_open_code option
val sexp_of_channel_open_code : channel_open_code -> Sexplib.Sexp.t
val channel_open_code_of_sexp : Sexplib.Sexp.t -> channel_open_code
type mpint = Z.t
val sexp_of_mpint : Z.t -> Sexplib0.Sexp.t
val global_request_of_sexp : Sexplib0.Sexp.t -> global_request
val sexp_of_global_request : global_request -> Sexplib0.Sexp.t
type channel_request =
| Pty_req of string * int32 * int32 * int32 * int32 * string
| X11_req of bool * string * string * int32
| Env of string * string
| Shell
| Exec of string
| Subsystem of string
| Window_change of int32 * int32 * int32 * int32
| Xon_xoff of bool
| Signal of string
| Exit_status of int32
| Exit_signal of string * bool * string * string
| Raw_data of Cstruct_sexp.t
val channel_request_of_sexp : Sexplib0.Sexp.t -> channel_request
val sexp_of_channel_request : channel_request -> Sexplib0.Sexp.t
type channel_open =
| Session
| X11 of string * int32
| Forwarded_tcpip of string * int32 * string * int32
| Direct_tcpip of string * int32 * string * int32
| Raw_data of Cstruct_sexp.t
val channel_open_of_sexp : Sexplib0.Sexp.t -> channel_open
val sexp_of_channel_open : channel_open -> Sexplib0.Sexp.t
val sexp_of_password : 'a -> Sexplib0.Sexp.t
type auth_method =
| Pubkey of Hostkey.pub * (Hostkey.alg * Cstruct_sexp.t) option
| Password of password * password option
| Hostbased of string * Cstruct_sexp.t * string * string * Cstruct_sexp.t
| Authnone
val auth_method_of_sexp : Sexplib0.Sexp.t -> auth_method
val sexp_of_auth_method : auth_method -> Sexplib0.Sexp.t
val auth_method_equal : auth_method -> auth_method -> bool
type message =
| Msg_disconnect of disconnect_code * string * string
| Msg_ignore of string
| Msg_unimplemented of int32
| Msg_debug of bool * string * string
| Msg_service_request of string
| Msg_service_accept of string
| Msg_kexinit of kexinit
| Msg_newkeys
| Msg_kexdh_reply of Hostkey.pub * mpint * Hostkey.alg * Cstruct_sexp.t
| Msg_kexdh_init of mpint
| Msg_kexecdh_reply of Hostkey.pub * mpint * Hostkey.alg * Cstruct_sexp.t
| Msg_kexecdh_init of mpint
| Msg_kexdh_gex_request of int32 * int32 * int32
| Msg_kexdh_gex_group of mpint * mpint
| Msg_kexdh_gex_init of mpint
| Msg_kexdh_gex_reply of Hostkey.pub * mpint * Hostkey.alg * Cstruct_sexp.t
| Msg_kex of message_id * Cstruct_sexp.t
| Msg_userauth_request of string * string * auth_method
| Msg_userauth_failure of string list * bool
| Msg_userauth_success
| Msg_userauth_pk_ok of Hostkey.pub
| Msg_global_request of string * bool * global_request
| Msg_request_success of Cstruct_sexp.t option
| Msg_request_failure
| Msg_channel_open of int32 * int32 * int32 * channel_open
| Msg_channel_open_confirmation of int32 * int32 * int32 * int32 * Cstruct_sexp.t
| Msg_channel_open_failure of int32 * int32 * string * string
| Msg_channel_window_adjust of int32 * int32
| Msg_channel_data of int32 * Cstruct_sexp.t
| Msg_channel_extended_data of int32 * int32 * Cstruct_sexp.t
| Msg_channel_eof of int32
| Msg_channel_close of int32
| Msg_channel_request of int32 * bool * channel_request
| Msg_channel_success of int32
| Msg_channel_failure of int32
| Msg_version of string
val sexp_of_message : message -> Sexplib0.Sexp.t
val message_to_string : message -> string
val message_to_id : message -> message_id
val message_to_int : message -> int
val disconnect_msg : disconnect_code -> string -> message
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>