Function 53, subfunction 7 - write to TCP-socket.
Parameters:
- eax = 53 - function number
- ebx = 7 - subfunction number
- ecx = socket handle
- edx = number of bytes to write
- esi = pointer to data to write
Returned value:
- eax = 0xffffffff - error
- eax = 0xffff - not enough memory
- eax = 0 - success
- ebx destroyed
Remarks:
- Check on validity of handle is minimal - only not very incorrect
not opened handles are eliminated.
- Number of bytes to write must not exceed 1500-40, though
the appropriate check is not made.