aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-12 15:47:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-12 15:47:17 +0000
commitf2fd1b8856559ef9a8dfb2d996fa452e4ee6f41a (patch)
treed30a9a957a81b43916444134af99d7de9b5a07db /include
parentcb4efcf275fd2acb60fbd0978a3322c65c536704 (diff)
two new random seed options: CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKET
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 4d5e4a0ec..27a889c64 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -418,6 +418,13 @@ typedef enum {
makes the operation slower and is less friendly for the network. */
CINIT(FORBID_REUSE, LONG, 75),
+ /* Set to a file name that contains random data for libcurl to use to
+ seed the random engine when doing SSL connects. */
+ CINIT(RANDOM_FILE, OBJECTPOINT, 76),
+
+ /* Set to the Entropy Gathering Daemon socket pathname */
+ CINIT(EGDSOCKET, OBJECTPOINT, 77),
+
CURLOPT_LASTENTRY /* the last unusued */
} CURLoption;