package ocamlnet

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Telnet_protocol of exn
type telnet_command =
  1. | Telnet_data of string
  2. | Telnet_nop
  3. | Telnet_dm
  4. | Telnet_brk
  5. | Telnet_ip
  6. | Telnet_ao
  7. | Telnet_ayt
  8. | Telnet_ec
  9. | Telnet_el
  10. | Telnet_ga
  11. | Telnet_sb of char
  12. | Telnet_se
  13. | Telnet_will of char
  14. | Telnet_wont of char
  15. | Telnet_do of char
  16. | Telnet_dont of char
  17. | Telnet_unknown of char
  18. | Telnet_eof
  19. | Telnet_timeout
type telnet_options = {
  1. connection_timeout : float;
  2. verbose_input : bool;
  3. verbose_output : bool;
}
type telnet_negotiated_option =
  1. | Telnet_binary
  2. | Telnet_echo
  3. | Telnet_suppress_GA
  4. | Telnet_status
  5. | Telnet_timing_mark
  6. | Telnet_ext_opt_list
  7. | Telnet_end_of_rec
  8. | Telnet_window_size
  9. | Telnet_term_speed
  10. | Telnet_term_type
  11. | Telnet_X_display
  12. | Telnet_linemode
  13. | Telnet_flow_ctrl
  14. | Telnet_auth
  15. | Telnet_new_environ
  16. | Telnet_option of int
type telnet_option_state =
  1. | Not_negotiated
  2. | Accepted
  3. | Rejected
val char_of_option : telnet_negotiated_option -> char
val option_of_char : char -> telnet_negotiated_option
type telnet_connector =
  1. | Telnet_connect of string * int
  2. | Telnet_socket of Unix.file_descr
class telnet_session : object ... end
module Debug : sig ... end