SysSockIoctlΒΆ
This function of type DINT calls the function ioctl of the operating system in order to control the I/O mode of the socket.
In case of successful operation the function will return TRUE, otherwise FALSE.
Variable | Data type | Description |
---|---|---|
diSocket | DINT | Descriptor of the socket, returned by SysSockCreate (corresponding parameter e.g. in Win32: s) |
diCommand | DINT | Command which you want to apply on the socket. (corresponding parameter e.g. in Win32: cmd). Valid commands are: SOCKET_FIONBIO, SOCKET_FIONREAD. |
piParameter | DWORD | Pointer to the command parameter (corresponding parameter e.g. in Win32: argp) |