ICE-framework
Ondersteuning voor ICE (Interactive Connectivity Establishment) in sgcWebSockets. Vind het optimale pad voor peer-to-peer-communicatie.
Ondersteuning voor ICE (Interactive Connectivity Establishment) in sgcWebSockets. Vind het optimale pad voor peer-to-peer-communicatie.
uses
sgcICE_Client;
var
ICE: TsgcICEClient;
begin
ICE := TsgcICEClient.Create(nil);
ICE.STUNServer := 'stun.l.google.com:19302';
ICE.TURNServer := 'turn.example.com:3478';
ICE.OnCandidateGathered := HandleCandidate;
ICE.GatherCandidates;
end;