Module: kamailio
Branch: master
Commit: a93d3f9375a9ad044866c2aa32490238a4a270a2
URL: https://github.com/kamailio/kamailio/commit/a93d3f9375a9ad044866c2aa3249023…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2020-11-19T10:46:19+01:00
modules: readme files regenerated - http_async_client ... [skip ci]
---
Modified: src/modules/http_async_client/README
---
Diff: https://github.com/kamailio/kamailio/commit/a93d3f9375a9ad044866c2aa3249023…
Patch: https://github.com/kamailio/kamailio/commit/a93d3f9375a9ad044866c2aa3249023…
---
diff --git a/src/modules/http_async_client/README b/src/modules/http_async_client/README
index f2afe6325d..cfa2c37df0 100644
--- a/src/modules/http_async_client/README
+++ b/src/modules/http_async_client/README
@@ -477,6 +477,21 @@ http_async_query("https://example.com/test.php", "HTTP_REPLY");
* $http_mb and $http_ml: HTTP response buffer (including headers) and
length
* $http_rb and $http_bs: HTTP response body and body length
+ * $http_time: provides access to broken-down transfer time in
+ microseconds calculated by cURL
+ (https://curl.se/libcurl/c/curl_easy_getinfo.html).
+ 'name' can be:
+ + total - total time for the transfer
+ + lookup - name lookup time
+ + connect - time from the start until the connection to the
+ remote host (or proxy) was completed.
+ + appconnect - time from start until SSL/SSH handshake completed
+ + pretransfer - time from start until just before the transfer
+ begins
+ + starttransfer - time from start until just when the first byte
+ is received
+ + redirect - time taken for all redirect steps before the final
+ transfer.
6. Statistics