mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
Revised wording, etc
This commit is contained in:
parent
016a8e3e19
commit
add00a7bae
1 changed files with 6 additions and 3 deletions
|
@ -97,8 +97,9 @@ The created socket may not be closed automatically so it is users' responsibilit
|
|||
|
||||
# socket?
|
||||
|
||||
socket? object -> boolean
|
||||
Returns #t if given object is socket object. Otherwise #f.
|
||||
(socket? object) -> boolean
|
||||
|
||||
Returns `#t` if given `object` is socket object. Otherwise `#f`.
|
||||
|
||||
# socket-accept
|
||||
|
||||
|
@ -112,6 +113,7 @@ Wait for an incoming connection request, and returns a fresh connected client so
|
|||
|
||||
Sends a binary data block to a socket and returns the sent data size.
|
||||
`flags` may specify the procedure's behaviour.
|
||||
|
||||
If the `flags` is omitted, the default value must be the result of following form:
|
||||
|
||||
(message-type none)
|
||||
|
@ -122,7 +124,8 @@ If the `flags` is omitted, the default value must be the result of following for
|
|||
|
||||
Receives a binary data block from a socket. If zero length bytevector is returned, it means the peer connection is closed.
|
||||
`flags` may specify the procedure's behaviour.
|
||||
If the `flags` is omitted, the default value must be the result of following form;
|
||||
|
||||
If the `flags` is omitted, the default value must be the result of following form:
|
||||
|
||||
(message-type none)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue