$Sock Send: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (1 revision) |
(No difference)
|
Revision as of 02:53, 20 January 2012
Send string
Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no direct OO equivalent for this $function.
$Sock_Send sends a string over a Janus Sockets connection.
It is also a callable function.
Syntax
[%rc =] $Sock_Send(sockno, string, [opts])
Syntax terms
%rc | A numeric value that is a numeric error code (described further below), or if the operation could not be performed as requested, a 0 value. For more details, see "$Sock_RecvPrs return values". | ||||||||
---|---|---|---|---|---|---|---|---|---|
sockno | The socket number. | ||||||||
string | The string to send. | ||||||||
opts | This optional argument is an option string, which can contain any of the following:
|
$Sock_Send return codes
- 0, if the function completes successfully.
- -1, if the socket is not open and ONRESET CONTINUE is in effect for the socket.
If you need to send line-end delimited information, use $Sock_SendLn.