Is there a minimum amount of milliseconds that should be used between TCP SEND requests? 250-milliseconds works in an application, but is a kludge.
Code:
SUB SendIt(MySocket AS LONG, s AS STRING) TCP SEND #MySocket, s + $Terminator SLEEP 250 'minimum 250 milliseconds between sends so packets don't get combined END SUB
Comment