mORMot and Open Source friends
Check-in [87bf0e8ccf]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:{2785} fixed latest patch as requested by [ff91d7143455]
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 87bf0e8ccfe4bc3a12b85c80ec1e14c695fdaf4b
User & Date: ab 2016-07-15 18:34:25
Context
2016-07-17
17:25
{2786} new MultiPartFormDataEncode and MultiPartFormDataAddFile/MultiPartFormDataAddField functions and enhanced MultiPartFormDataDecode - as proposed by EMartin (thanks for sharing!) check-in: 63ebaec176 user: ab tags: trunk
2016-07-15
18:34
{2785} fixed latest patch as requested by [ff91d7143455] check-in: 87bf0e8ccf user: ab tags: trunk
07:29
{2784} Let's THttpClientSocket use the same HTTP_DEFAULT_RECEIVETIMEOUT global variable as THttpRequest (as requested by [ff91d7143455]) check-in: 2b444efbfd user: pavel.mash tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to SynCrtSock.pas.

3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
end;


{ THttpClientSocket }

constructor THttpClientSocket.Create(aTimeOut: cardinal);
begin
  if aTimeOut = 0 then
    inherited Create(aTimeOut) else
    inherited Create(HTTP_DEFAULT_RECEIVETIMEOUT);
  UserAgent := DefaultUserAgent(self);
end;

function THttpClientSocket.Delete(const url: SockString; KeepAlive: cardinal;
  const header: SockString): integer;
begin
  result := Request(url,'DELETE',KeepAlive,header,'','',false);






|
|
|







3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
end;


{ THttpClientSocket }

constructor THttpClientSocket.Create(aTimeOut: cardinal);
begin
  if aTimeOut=0 then
    aTimeOut := HTTP_DEFAULT_RECEIVETIMEOUT;
  inherited Create(aTimeOut);
  UserAgent := DefaultUserAgent(self);
end;

function THttpClientSocket.Delete(const url: SockString; KeepAlive: cardinal;
  const header: SockString): integer;
begin
  result := Request(url,'DELETE',KeepAlive,header,'','',false);

Changes to SynopseCommit.inc.

1
'1.18.2784'
|
1
'1.18.2785'