package lpd
-
lpd.socket
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
method input : Bytes.t -> int -> int -> int
#input buf pos len
reads up to len
characters from the object, storing them in string buf
, starting at character number pos
. It returns the actual number of characters read, between 0 and len
(inclusive). A return value 0
(when len > 0
) means that the write would block (and we are in non-blocking mode).
method really_input : Bytes.t -> int -> int -> unit
See Socket.really_input
.
method input_till : char -> Bytes.t -> int -> int -> int
See Socket.input_till
.