Protocolo UDP
Soporte de UDP (User Datagram Protocol) en sgcWebSockets. Comunicación sin conexión y de baja latencia para aplicaciones en tiempo real.
Soporte de UDP (User Datagram Protocol) en sgcWebSockets. Comunicación sin conexión y de baja latencia para aplicaciones en tiempo real.
uses
sgcUDP_Client, sgcUDP_Server;
var
Client: TsgcUDPClient;
begin
Client := TsgcUDPClient.Create(nil);
Client.Host := '192.168.1.100';
Client.Port := 9000;
Client.Send('Hello UDP!');
end;