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
13Added-in: 7.7
14---
15
16# NAME
17
18CURLOPT_RANDOM_FILE - file to read random data from
19
20# SYNOPSIS
21
22~~~c
23#include <curl/curl.h>
24
25CURLcode curl_easy_setopt(CURL *handle, CURLOPT_RANDOM_FILE, char *path);
26~~~
27
28# DESCRIPTION
29
30Deprecated option. It serves no purpose anymore.
31
32# DEFAULT
33
34NULL, not used
35
36# DEPRECATED
37
38Deprecated since 7.84.0.
39
40# %AVAILABILITY%
41
42# RETURN VALUE
43
44Returns CURLE_OK.
45