• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
3SPDX-License-Identifier: curl
4Title: CURLOPT_EGDSOCKET
5Section: 3
6Source: libcurl
7See-also:
8  - CURLOPT_RANDOM_FILE (3)
9Protocol:
10  - TLS
11TLS-backend:
12  - OpenSSL
13Added-in: 7.7
14---
15
16# NAME
17
18CURLOPT_EGDSOCKET - EGD socket path
19
20# SYNOPSIS
21
22~~~c
23#include <curl/curl.h>
24
25CURLcode curl_easy_setopt(CURL *handle, CURLOPT_EGDSOCKET, char *path);
26~~~
27
28# DESCRIPTION
29
30Deprecated option. It serves no purpose anymore.
31
32# DEFAULT
33
34NULL
35
36# DEPRECATED
37
38This option was deprecated in 7.84.0.
39
40# %AVAILABILITY%
41
42# RETURN VALUE
43
44curl_easy_setopt(3) returns a CURLcode indicating success or error.
45
46CURLE_OK (0) means everything was OK, non-zero means an error occurred, see
47libcurl-errors(3).
48