Displaying 5 results from an estimated 5 matches for "have_egd".
1999 Nov 19
0
EGD socket problem ...
...:bd:bb:00.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'atelier.acadiau.ca,131.162.138.223' to the list of known hosts.
Couldn't connect to EGD socket "/var/run/random": Socket operation on non-socket
This is under Solaris 7/x86, with HAVE_EGD defined...not good with sockets
without my bible in front of me, so can't play with this until at least
Sunday :( The problem appears to be, in here, with the error generated by
the 'fatal:' result when connect() is tested:
char egd_message[2] = { 0x02, 0x00 };
struct...
1999 Dec 29
1
Patch to use Dante socks library
...dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))
$NetBSD$
--- acconfig.h.orig Mon Dec 27 23:09:36 1999
+++ acconfig.h Wed Dec 29 08:57:46 1999
@@ -24,6 +24,9 @@
/* Are we using the Entropy gathering daemon */
#undef HAVE_EGD
+/* Define if using the Dante SOCKS library. */
+#undef HAVE_DANTE
+
/* Define if your ssl headers are included with #include <ssl/header.h> */
#undef HAVE_SSL
--- ssh.h.orig Tue Dec 21 08:12:39 1999
+++ ssh.h Wed Dec 29 10:12:31 1999
@@ -267,6 +267,53 @@
#define SSH_CMSG_HAVE_KERBERO...
1999 Nov 22
3
3 Bugs to Report: OpenSSH V1.2pre13
Three possibly related bugs to report. N.B. The test machines in question
are in peak form (with the exception of different kernel versions) and were
working 100% under the old ssh 1.2.x. The two clients we tested from are
machines running 2.2.13 & 2.2.14preX Linux kernels. The server where the
problems appeared is running 2.2.12.
1. sshd dies periodically. The crash occurred just after a
1999 Dec 21
0
Problem with UTMP recording
...ssl"
/* Location of lastlog file */
#define LASTLOG_LOCATION "/var/log/lastlog"
/* If lastlog is a directory */
/* #undef LASTLOG_IS_DIR */
/* Location of random number pool */
#define RANDOM_POOL "/dev/urandom"
/* Are we using the Entropy gathering daemon */
/* #undef HAVE_EGD */
/* Define if your ssl headers are included with #include <ssl/header.h> */
/* #undef HAVE_SSL */
/* Define if your ssl headers are included with #include <openssl/header.h> */
#define HAVE_OPENSSL 1
/* Define is utmp.h has a ut_host field */
#define HAVE_HOST_IN_UTMP 1
/* Defin...
2000 Jan 19
3
AIX openssh patches
...get_random_bytes(unsigned char *buf, int len)
{
+
+ #ifdef USE_SYSRANDOM
+ int index;
+
+ srandom(time(NULL) + getpid());
+
+ for (index = 0; index < len+1; index++) {
+ buf[index] = rand()%255;
+ }
+ #else /* USE_SYSRANDOM */
static int random_pool;
int c;
#ifdef HAVE_EGD
***************
*** 184,189 ****
--- 200,206 ----
fatal("Couldn't read from random pool \"%s\": %s", RANDOM_POOL, strerror(errno));
close(random_pool);
+ #endif /* USE_SYSRANDOM */
}
#endif /* !HAVE_ARC4RANDOM */
*** canohost.c.DIST Wed Jan 19 11:00:42 2000...