Displaying 6 results from an estimated 6 matches for "prngd_socket".
2001 Jun 07
2
Patch to enable multiple possible sources of entropy
...eof(addr));
#ifdef PRNGD_PORT
+ debug2("Opening entropy socket on localhost port %d", PRNGD_PORT);
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
addr.sin_port = htons(PRNGD_PORT);
addr_len = sizeof(struct sockaddr_in);
#else /* use IP socket PRNGD_SOCKET instead */
+ debug2("Opening entropy socket at %s", PRNGD_SOCKET);
/* Sanity checks */
if (sizeof(PRNGD_SOCKET) > sizeof(addr.sun_path))
fatal("Random pool path is too long");
***************
*** 179,192 ****
close(fd);
return(rval);
}
! #else /* !USE_PRNG...
2005 May 12
0
[PATCH] Trusted IRIX Support
...Define if you want IRIX kernel jobs */
#undef WITH_IRIX_JOBS
+ /* Define if you want IRIX Capability support */
+ #undef WITH_IRIX_CAP
+
+ /* Define if you want IRIX MAC Label support (Trusted IRIX only!) */
+ #undef WITH_IRIX_MAC
+
/* Location of PRNGD/EGD random number socket */
#undef PRNGD_SOCKET
diff -r -C3 openssh-4.0p1/config.h.in openssh-4.0p1.trix/config.h.in
*** openssh-4.0p1/config.h.in Tue Mar 8 22:54:14 2005
--- openssh-4.0p1.trix/config.h.in Thu May 12 12:56:15 2005
***************
*** 146,151 ****
--- 146,157 ----
/* Define if you want IRIX kernel jobs */
#undef WIT...
2001 Oct 02
2
New feature: remote entropy gatherer port
...Muntada <alexm at ac.upc.es>
http://people.ac.upc.es/alexm/
-------------- next part --------------
*** acconfig.h.orig Thu Sep 20 21:43:41 2001
--- acconfig.h Tue Oct 2 20:25:35 2001
***************
*** 95,100 ****
--- 95,103 ----
/* Location of PRNGD/EGD random number socket */
#undef PRNGD_SOCKET
+ /* Port number of PRNGD/EGD random number host */
+ #undef PRNGD_HOST
+
/* Port number of PRNGD/EGD random number socket */
#undef PRNGD_PORT
*** configure.in.orig Wed Sep 26 00:39:38 2001
--- configure.in Tue Oct 2 20:34:09 2001
***************
*** 1494,1505 ****
]
)
! # Chec...
2002 Jan 22
0
bugzilla down; patch for configure.ac --with-prngd-socket
...l" | grep '^/' >/dev/null; then
+ :
+ else
AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
fi
- if ! test -r "$withval" ; then
+ if test ! -r "$withval" ; then
AC_MSG_WARN(Entropy socket is not readable)
fi
PRNGD_SOCKET="$withval"
2004 Dec 18
0
Make ssh-rand-helper fall back to commands when configured with prngd
...lusively.
Next reboot: no prngd, no random seed, no sshd. Do not log in, do not
pass "Go", do not collect $200.
Can anyone see any reason why we shouldn't allow ssh-rand-helper to
fall back to commands if egd/prngd is not available? This is what
happens if both PRNGD_PORT and PRNGD_SOCKET are defined:
$ ./ssh-rand-helper -v
debug1: Seeded RNG with 1 bytes from system calls
debug1: trying egd/prngd port 3333
Couldn't connect to PRNGD port 3333: Connection refused
debug1: trying egd/prngd socket /var/run/egd-pool
Couldn't connect to PRNGD socket "/var/run/egd-pool":...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
.../* #undef BROKEN_REALPATH */
/* #undef HAVE_NEXT */
/* #undef USE_PAM */
/* #undef WITH_AIXAUTHENTICATE */
/* #undef AIX_LOGINFAILED_4ARG */
/* #undef SKEYCHALLENGE_4ARG */
/* #undef WITH_IRIX_ARRAY */
/* #undef WITH_IRIX_PROJECT */
/* #undef WITH_IRIX_AUDIT */
/* #undef WITH_IRIX_JOBS */
/* #undef PRNGD_SOCKET */
/* #undef PRNGD_PORT */
#define ENTROPY_TIMEOUT_MSEC 200
#define SSH_PRIVSEP_USER "sshd"
/* #undef MANTYPE */
#define HAVE_OPENSSL 1
/* #undef RSAREF */
#define HAVE_STRUCT_TIMEVAL 1
#define HAVE_HOST_IN_UTMP 1
#define HAVE_HOST_IN_UTMPX 1
#define HAVE_ADDR_IN_UTMP 1
#define HAVE_ADDR_...