UDP Server
TsgcUDPServer component for building UDP servers that receive and respond to datagrams from multiple clients.
TsgcUDPServer component for building UDP servers that receive and respond to datagrams from multiple clients.
uses
sgcUDP_Server;
var
Server: TsgcUDPServer;
begin
Server := TsgcUDPServer.Create(nil);
Server.Port := 9000;
Server.OnUDPRead := HandleRead;
Server.Start;
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.