
Originally Posted by
zorgion
Create your own transfer function:p
What do you mean? Keep in mind, I'd like to keep all data transfer contained within just one connection to the proxy, without having to spawn new connections just to transfer files and what not.
All I'm doing is:
Code:
sck.GetData Index, tmp 'from one session
If Index = BridgedClient Then
sck.SendData BridgedServer, tmp 'from the client to the server
End If
If Index = BridgedServer Then
sck.SendData BridgedClient, tmp 'from the server to the client
End If
I don't see how I can make it any simpler. I don't even make it wait until sck_SendComplete to send the next batch of data. I wonder if its something within the CSocketPlus class that is slowing it down (flow control) maybe?