summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_EGDSOCKET.3
diff options
context:
space:
mode:
authorSeonah Moon <seonah1.moon@samsung.com>2022-01-12 13:27:51 +0900
committerSeonah Moon <seonah1.moon@samsung.com>2022-01-12 13:28:56 +0900
commit58f7e70ff869dee66c90b1323e0d5c9f324067b8 (patch)
tree31060230fe108ac26a3258e1b4fb22454c7cf01c /docs/libcurl/opts/CURLOPT_EGDSOCKET.3
parentb31894b8fe11ff4cfe97bd63eb4e62e14893c749 (diff)
downloadcurl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.tar.gz
curl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.tar.bz2
curl-58f7e70ff869dee66c90b1323e0d5c9f324067b8.zip
Imported Upstream version 7.81.0upstream/7.81.0
Change-Id: Ibe8b1de1691e326fbd2a8133470758ab942cbd97
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_EGDSOCKET.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_EGDSOCKET.314
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/libcurl/opts/CURLOPT_EGDSOCKET.3 b/docs/libcurl/opts/CURLOPT_EGDSOCKET.3
index bf59784ea..79ac8ba70 100644
--- a/docs/libcurl/opts/CURLOPT_EGDSOCKET.3
+++ b/docs/libcurl/opts/CURLOPT_EGDSOCKET.3
@@ -5,11 +5,11 @@
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
-.\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
-.\" * are also available at https://curl.haxx.se/docs/copyright.html.
+.\" * are also available at https://curl.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
@@ -20,17 +20,19 @@
.\" *
.\" **************************************************************************
.\"
-.TH CURLOPT_EGDSOCKET 3 "June 25, 2020" "libcurl 7.73.0" "curl_easy_setopt options"
+.TH CURLOPT_EGDSOCKET 3 "November 26, 2021" "libcurl 7.81.0" "curl_easy_setopt options"
.SH NAME
-CURLOPT_EGDSOCKET \- set EGD socket path
+CURLOPT_EGDSOCKET \- EGD socket path
.SH SYNOPSIS
+.nf
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_EGDSOCKET, char *path);
+.fi
.SH DESCRIPTION
Pass a char * to the null-terminated path name to the Entropy Gathering Daemon
-socket. It will be used to seed the random engine for SSL.
+socket. It will be used to seed the random engine for TLS.
The application does not have to keep the string around after setting this
option.
@@ -49,7 +51,7 @@ if(curl) {
}
.fi
.SH AVAILABILITY
-If built TLS enabled. Only the OpenSSL and GnuTLS backends will use this.
+If built with TLS enabled. Only the OpenSSL backend will use this.
.SH RETURN VALUE
Returns CURLE_OK if TLS is supported, CURLE_UNKNOWN_OPTION if not, or
CURLE_OUT_OF_MEMORY if there was insufficient heap space.