Showing changes from revision #0 to #1:
Added | Removed | Changed
Entry | |
---|---|
R0 | Socket descriptor |
R1 | Pointer to buffer containing the data to send |
R2 | Size of buffer |
R3 | Flags |
R4 | Pointer to address on the remote host to connect to |
R5 | Size of remote address |
Exit | |
---|---|
R0 | Number of bytes sent |
The purpose of this call is to write data to a socket without needing to have connected the socket prior to use.
This SWI directly corresponds to the function sendto and would ordinarily be called from C using the sendto()
function in socklib.h
.