CURLOPT_EGDSOCKET and CURLOPT_RANDOM_FILE are both completely dead so remove their example sections since the code there is useless. There is still a way to inject a random file for OpenSSL older than 1.1.0 but it's not what the example showed (and it's not even done with this option) so we refrain from documenting it here. Closes: #13540 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
42 lines
593 B
Markdown
42 lines
593 B
Markdown
---
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Title: CURLOPT_RANDOM_FILE
|
|
Section: 3
|
|
Source: libcurl
|
|
See-also:
|
|
- CURLOPT_EGDSOCKET (3)
|
|
Protocol:
|
|
- TLS
|
|
TLS-backend:
|
|
- OpenSSL
|
|
---
|
|
|
|
# NAME
|
|
|
|
CURLOPT_RANDOM_FILE - file to read random data from
|
|
|
|
# SYNOPSIS
|
|
|
|
~~~c
|
|
#include <curl/curl.h>
|
|
|
|
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_RANDOM_FILE, char *path);
|
|
~~~
|
|
|
|
# DESCRIPTION
|
|
|
|
Deprecated option. It serves no purpose anymore.
|
|
|
|
# DEFAULT
|
|
|
|
NULL, not used
|
|
|
|
# AVAILABILITY
|
|
|
|
This option was deprecated in 7.84.0.
|
|
|
|
# RETURN VALUE
|
|
|
|
Returns CURLE_OK.
|