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
sgcP2P, sgcUDP_Classes;
var
Client: TsgcUDPClient;
begin
Client := TsgcUDPClient.Create(nil);
Client.Host := '192.168.1.100';
Client.Port := 9000;
Client.Active := True;
Client.WriteData('Hello UDP!');
end;