UDP-protocol
Ondersteuning voor UDP (User Datagram Protocol) in sgcWebSockets. Communicatie zonder verbinding en met lage latentie voor realtime toepassingen.
Ondersteuning voor UDP (User Datagram Protocol) in sgcWebSockets. Communicatie zonder verbinding en met lage latentie voor realtime toepassingen.
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;