1---
2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
3SPDX-License-Identifier: curl
4Title: CURLOPT_RANDOM_FILE
5Section: 3
6Source: libcurl
7See-also:
8  - CURLOPT_EGDSOCKET (3)
9Protocol:
10  - TLS
11TLS-backend:
12  - OpenSSL
13---
14
15# NAME
16
17CURLOPT_RANDOM_FILE - file to read random data from
18
19# SYNOPSIS
20
21~~~c
22#include <curl/curl.h>
23
24CURLcode curl_easy_setopt(CURL *handle, CURLOPT_RANDOM_FILE, char *path);
25~~~
26
27# DESCRIPTION
28
29Deprecated option. It serves no purpose anymore.
30
31# DEFAULT
32
33NULL, not used
34
35# AVAILABILITY
36
37This option was deprecated in 7.84.0.
38
39# RETURN VALUE
40
41Returns CURLE_OK.
42