diff --git a/reference/curl/functions/curl-getinfo.xml b/reference/curl/functions/curl-getinfo.xml
index 540319fa39..4fe620f5e6 100644
--- a/reference/curl/functions/curl-getinfo.xml
+++ b/reference/curl/functions/curl-getinfo.xml
@@ -81,7 +81,7 @@
- CURLINFO_REDIRECT_URL - URL of final transaction, with the CURLOPT_FOLLOWLOCATION option enabled
+ CURLINFO_REDIRECT_URL - With the CURLOPT_FOLLOWLOCATION option disabled: redirect URL found in the last transaction, that should be requested manually next. With the CURLOPT_FOLLOWLOCATION option enabled: this is empty. The redirect URL in this case is available in CURLINFO_EFFECTIVE_URL
@@ -161,6 +161,11 @@
CURLINFO_CONTENT_TYPE - Content-Type: of the requested document, NULL indicates server did not send valid Content-Type: header
+
+
+ CURLINFO_PRIVATE - Private data associated with this cURL handle, previously set with the CURLOPT_PRIVATE option of curl_setopt
+
+
@@ -313,6 +318,7 @@
+ Note that private data is not included in the associative array and must be retrieved individually with the CURLINFO_PRIVATE option.
@@ -334,6 +340,12 @@
Introduced CURLINFO_REDIRECT_URL.
+
+ 5.2.4
+
+ Introduced CURLINFO_PRIVATE.
+
+
5.1.3