UDP Client

TsgcUDPClient component for sending and receiving UDP datagrams in Delphi applications.

Capabilities

  • Send and receive UDP datagrams
  • Asynchronous and synchronous modes
  • Broadcast to all devices on a network
  • Multicast group join and leave
  • Configurable send and receive buffer sizes

Delphi Example

uses
  sgcUDP_Client;

var
  Client: TsgcUDPClient;
begin
  Client := TsgcUDPClient.Create(nil);
  Client.Host := '192.168.1.100';
  Client.Port := 9000;
  Client.OnUDPRead := HandleRead;
  Client.Open;
  Client.Send('Ping');
end;

Documentation & Demos

Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.

Ready to Use UDP Client?

Download the free trial and start building in minutes.