UDP Protocol

UDP (User Datagram Protocol) support in sgcWebSockets. Low-latency, connectionless communication for real-time applications.

Możliwości

  • Connectionless datagram communication
  • Low latency ideal for real-time applications
  • Broadcast and multicast support
  • Configurable buffer sizes and timeouts
  • IPv4 and IPv6 dual-stack support

Przykład w Delphi

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;

Ready to Use UDP?

Pobierz bezpłatną wersję próbną i zacznij tworzyć w kilka minut.