AddSSLHandler
From SCAR Divi Manual
Definition
procedure AddSSLHandler(const Index: Integer; const HTTP: Boolean);
Availability
SCAR Divi 3.00 > Current
Description
Adds an SSL handler to a connection specified by Index. If HTTP is true, the connection is an HTTP connection, else just a regular TCP connection.
Example
var
i: Integer;
begin
i := InitializeHTTPClient(True, True);
try
AddSSLHandler(i, True);
WriteLn(GetHTTPPage(i, 'https://encrypted.google.com/'));
finally
FreeHTTPClient(i);
end;
end.