Showing changes from revision #0 to #1:
Added | Removed | Changed
Entry | |
---|---|
R0 | Domain |
R1 | Type |
R2 | Protocol, or 0 for default for socket type |
Exit | |
---|---|
R0 | Socket descriptor |
The purpose of this call is to create a new socket of the type given for a specified protocol. This only allocates the resources for a new socket, it does not bind or connect it to anything.
This SWI directly corresponds to the function socket and would ordinarily be called from C using the socket()
function in socklib.h
.