TsgcUDPServer implements the UDP Server based on Indy library.
TsgcUDPServer implements the UDP Server based on Indy library.
UDP it's a connection less protocol where there is no assurance that message sent arrive to the destination but opposite to TCP protocol, it's much faster.
1. Drop a TsgcUDPServer component onto the form
2. Set the listening Port.
oClient := TsgcUDPServer.Create(nil);
oClient.Port := 80;
3. To start the server, set the property Active = true.