UDP Protocol
UDP (User Datagram Protocol) support in sgcWebSockets. Low-latency, connectionless communication for real-time applications.
UDP (User Datagram Protocol) support in sgcWebSockets. Low-latency, connectionless communication for real-time applications.
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;