Tagged Questions

2
votes
2answers
294 views

UDP Proxy implementation

I am trying to build a simple TCP and UDP proxies. No problem with the TCP proxy, however the UDP is a little more complex to handle. The classic proxy scenario would be like this. Listen for ...
0
votes
3answers
484 views

WSAETIMEDOUT message in Synapse Library

Why I always get WSAETIMEDOUT error in this code : var fUDPBuf: array [1..UdpPacketSize] of byte; {...} UDPSocket := TUDPBlockSocket.Create; UDPSocket.Bind(UDPIP, UDPPort); if UDPSocket.LastError = 0 ...