diff options
author | djm <djm> | 2001-03-03 13:29:20 +0000 |
---|---|---|
committer | djm <djm> | 2001-03-03 13:29:20 +0000 |
commit | 02f08d2560e08506533a9e88ed75c380853d2439 (patch) | |
tree | 50f133e30a51dc9b093fcb7465ce3a0c51ade2cd /acconfig.h | |
parent | 55be355ef9b583e67b6fdee56370f43bf12bd00c (diff) | |
download | openssh-02f08d2560e08506533a9e88ed75c380853d2439.tar.gz |
- Allow PRNGd entropy collection from localhost TCP socket. Replace
"--with-egd-pool" configure option with "--with-prngd-socket" and
"--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
<Lutz.Jaenicke@aet.TU-Cottbus.DE>
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: acconfig.h,v 1.105 2001/02/26 21:39:07 djm Exp $ */ +/* $Id: acconfig.h,v 1.106 2001/03/03 13:29:21 djm Exp $ */ #ifndef _CONFIG_H #define _CONFIG_H @@ -89,8 +89,11 @@ /* Location of random number pool */ #undef RANDOM_POOL -/* Location of EGD random number socket */ -#undef EGD_SOCKET +/* Location of PRNGD/EGD random number socket */ +#undef PRNGD_SOCKET + +/* Port number of PRNGD/EGD random number socket */ +#undef PRNGD_PORT /* Builtin PRNG command timeout */ #undef ENTROPY_TIMEOUT_MSEC |