Sockets
ReadLine
read a line of text from a socket
Calling Sequence
Parameters
Description
Examples
ReadLine(sid, timeout)
sid
-
valid open socket ID
timeout
(optional) non-negative integer; number of seconds to block before timing out
Many network protocols are line-based to allow for easy and efficient implementation. For this reason, a separate entry point ReadLine is provided for reading text one line at a time over a socket connection.
The procedure ReadLine is similar to the procedure Sockets[Read], however, it stops reading upon encountering the first newline (ASCII 10) character in the data. Like Sockets[Read], the procedure ReadLine is used to read textual data from a socket. It cannot be used to read data containing null bytes. (To read binary data, see Sockets[ReadBinary].)
The argument sid must be a valid socket ID for an open socket connection. The optional argument timeout indicates the number of seconds the call to ReadLine should block before timing out and returning the value false.
The ReadLine procedure obeys the persistent timeout protocol. (See Sockets/timeout.)
with⁡Sockets:
sid≔Open⁡localhost,echo
0
Write⁡sid,The higher, the fewer!\n
23
ReadLine⁡sid
The higher, the fewer!
Close⁡sid
true
sid≔Open⁡mantis,echo
Write⁡sid,The higher,\nthe fewer!\n
The higher,
the fewer!
See Also
socket definition
Sockets/timeout
Sockets[Peek]
Sockets[Read]
Sockets[ReadBinary]
Download Help Document