View source code
Display the source code in std/net/curl.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function std.net.curl.HTTP.getTiming

Get various timings defined in CurlInfo. The value is usable only if the return value is equal to CurlError.ok.

int getTiming (
  CurlInfo timing,
  ref double val
);

Parameters

NameDescription
timing one of the timings defined in CurlInfo. The values are: CurlInfo.namelookup_time, CurlInfo.connect_time, CurlInfo.pretransfer_time, CurlInfo.starttransfer_time, CurlInfo.redirect_time, CurlInfo.appconnect_time, CurlInfo.total_time.
val the actual value of the inquired timing.

Returns

The return code of the operation. The value stored in val should be used only if the return value is etc.c.curl.CurlInfo.ok.

Example

import std.net.curl;
import etc.c.curl : CurlError, CurlInfo;

auto client = HTTP("dlang.org");
client.perform();

double val;
CurlCode code;

code = client.getTiming(CurlInfo.namelookup_time, val);
assert(code == CurlError.ok);

Authors

Jonas Drewsen. Some of the SMTP code contributed by Jimmy Cao.

License

Boost License 1.0.