UDP Protocol

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

Capabilities

  • 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

Delphi Example

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?

Download the free trial and start building in minutes.