Displaying 9 results from an estimated 9 matches for "ipv4_default".
2000 Mar 07
2
patch for openssh-1.2.2p1
...ff -ru openssh-1.2.2p1/config.h.in openssh-1.2.2p1-20000308/config.h.in
--- openssh-1.2.2p1/config.h.in Tue Mar 7 20:05:59 2000
+++ openssh-1.2.2p1-20000308/config.h.in Wed Mar 8 00:25:18 2000
@@ -131,6 +131,9 @@
/* Use IPv4 for connection by default, IPv6 can still if explicity asked */
#undef IPV4_DEFAULT
+/* Assume IPv4 mapped addresses IPv4 addresses */
+#undef IPV4_IN_IPV6
+
/* getaddrinfo is broken (if present) */
#undef BROKEN_GETADDRINFO
diff -ru openssh-1.2.2p1/configure.in openssh-1.2.2p1-20000308/configure.in
--- openssh-1.2.2p1/configure.in Sun Mar 5 15:02:46 2000
+++ openssh-1.2.2p...
2001 May 16
1
[PATCH]: configure.in
...-r1.285 configure.in
--- configure.in 2001/05/08 20:42:28 1.285
+++ configure.in 2001/05/16 16:22:50
@@ -64,6 +64,7 @@ case "$host" in
*-*-cygwin*)
LIBS="$LIBS -lregex /usr/lib/textmode.o"
AC_DEFINE(HAVE_CYGWIN)
+ AC_DEFINE(USE_PIPES)
AC_DEFINE(DISABLE_SHADOW)
AC_DEFINE(IPV4_DEFAULT)
AC_DEFINE(IP_TOS_IS_BROKEN)
Thanks,
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen at redhat.com
2002 Jul 04
1
[PATCH]: Remove HAVE_CYGWIN in favor of NO_IPPORT_RESERVED_CONCEPT
...=====================================================
RCS file: /cvs/openssh_cvs/configure.ac,v
retrieving revision 1.73
diff -u -p -r1.73 configure.ac
--- configure.ac 28 Jun 2002 00:37:33 -0000 1.73
+++ configure.ac 4 Jul 2002 09:13:30 -0000
@@ -86,6 +86,7 @@ case "$host" in
AC_DEFINE(IPV4_DEFAULT)
AC_DEFINE(IP_TOS_IS_BROKEN)
AC_DEFINE(NO_X11_UNIX_SOCKETS)
+ AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
AC_DEFINE(BROKEN_FD_PASSING)
AC_DEFINE(SETGROUPS_NOOP)
;;
Index: readconf.c
===================================================================
RCS file: /cvs/openssh_cvs/readconf.c,v
retri...
2001 Oct 07
3
Using -lssh as shared library
...9.9p2.orig/ipv4or6.c Thu Jan 1 03:00:00 1970
+++ openssh-2.9.9p2/ipv4or6.c Sun Oct 7 23:10:32 2001
@@ -0,0 +1,9 @@
+#include "includes.h"
+
+/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
+ Default value is AF_UNSPEC means both IPv4 and IPv6. */
+#ifdef IPV4_DEFAULT
+int IPv4or6 = AF_INET;
+#else
+int IPv4or6 = AF_UNSPEC;
+#endif
diff -rNu1 openssh-2.9.9p2.orig/ssh-keyscan.c openssh-2.9.9p2/ssh-keyscan.c
--- openssh-2.9.9p2.orig/ssh-keyscan.c Fri Sep 21 00:30:09 2001
+++ openssh-2.9.9p2/ssh-keyscan.c Sun Oct 7 23:08:13 2001
@@ -36,9 +36,4 @@
-/* Flag indica...
2001 Nov 27
1
[PATCH] tcp-wrappers support extended to x11 forwards
...f LIBWRAP
+#include <tcpd.h>
+#include <syslog.h>
+int allow_severity = LOG_INFO;
+int deny_severity = LOG_WARNING;
+#endif /* LIBWRAP */
+
/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
Default value is AF_UNSPEC means both IPv4 and IPv6. */
#ifdef IPV4_DEFAULT
diff -u openssh-3.0.1p1/ssh.c openssh-modified/ssh.c
--- openssh-3.0.1p1/ssh.c Mon Nov 12 01:52:04 2001
+++ openssh-modified/ssh.c Mon Nov 26 14:04:42 2001
@@ -80,6 +80,15 @@
char *__progname;
#endif
+#ifdef LIBWRAP
+#include <tcpd.h>
+#include <syslog.h>
+int allow_severity = LOG_I...
2001 Mar 14
3
OpenSSH 2.3.0p1: HP-UX 11.00 64-bit
I have encountered a problem with using OpenSSH 2.3.0p1 on 64-bit HP-UX
11.00 systems. This bug does not exhibit itself on any 32-bit HP-UX
11.00 or HP-UX 10.20 systems that I have built 2.3.0p1 on. OpenSSH
2.3.0p1 was built with HPs ANSI C compiler with OpenSSL 0.9.6 and zlib
1.1.3.
The problem is with the call to vhangup(2) in sshd when interactive
sessions are started. The problem does not
2001 May 14
2
openssh-2.9p1
...-------
diff -ur openssh-2.9p1.orig/ssh-keyscan.c openssh-2.9p1/ssh-keyscan.c
--- openssh-2.9p1.orig/ssh-keyscan.c Wed Mar 14 19:37:13 2001
+++ openssh-2.9p1/ssh-keyscan.c Sun May 13 01:39:43 2001
@@ -30,7 +30,11 @@
static int argno = 1; /* Number of argument currently being parsed */
+#ifdef IPV4_DEFAULT
+int family = AF_INET; /* IPv4 */
+#else
int family = AF_UNSPEC; /* IPv4, IPv6 or both */
+#endif
#define MAXMAXFD 256
2002 Jun 13
0
portable openssh bug in tru64 v5.1
This is in openssh-2.3.2p1:
Basically, getaddrinfo doesn't accept AF_UNSPEC on tru64 v5.1. I'm not
sure how you want to fix it, but defining IPV4_DEFAULT seems to work.
Nathan
<nate at openbsd.org>
2001 Jul 27
0
Updated ssh-keyscan patch for ssh2 support
...quot;
@@ -25,8 +31,20 @@
static int argno = 1; /* Number of argument currently being parsed */
-int family = AF_UNSPEC; /* IPv4, IPv6 or both */
+/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
+ Default value is AF_UNSPEC means both IPv4 and IPv6. */
+#ifdef IPV4_DEFAULT
+int IPv4or6 = AF_INET;
+#else
+int IPv4or6 = AF_UNSPEC;
+#endif
+
+#define KT_RSA1 1
+#define KT_DSA 2
+#define KT_RSA 4
+int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
+
#define MAXMAXFD 256
/* The number of seconds after which to give up on a TCP connection */
@@ -39,6 +57...