Displaying 7 results from an estimated 7 matches for "ipv4_in_ipv6".
2000 Mar 07
2
patch for openssh-1.2.2p1
...ssh-1.2.2p1/canohost.c openssh-1.2.2p1-20000308/canohost.c
--- openssh-1.2.2p1/canohost.c Fri Jan 14 13:45:48 2000
+++ openssh-1.2.2p1-20000308/canohost.c Wed Mar 8 00:25:18 2000
@@ -42,6 +42,22 @@
debug("getpeername failed: %.100s", strerror(errno));
fatal_cleanup();
}
+
+#ifdef IPV4_IN_IPV6
+ if (((struct sockaddr *)&from)->sa_family == AF_INET6 &&
+ IN6_IS_ADDR_V4MAPPED((&((struct sockaddr_in6 *)&from)->sin6_addr))){
+ struct in_addr addr;
+ u_int16_t port;
+ memcpy(&addr, ((char *)&((struct sockaddr_in6 *)&from)->sin6_addr)+12,
+...
2000 Jul 09
0
OpenSSH 2.1.1p2: /etc/nologin handling and related stuff
...-=-=-=-=-=-=-=-=-=-=-=-=
-------------- next part --------------
diff -ruw -x configure ../dist/acconfig.h ./acconfig.h
--- ../dist/acconfig.h Sat Jul 1 08:52:55 2000
+++ ./acconfig.h Sat Jul 8 21:13:22 2000
@@ -214,6 +214,9 @@
/* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
#undef IPV4_IN_IPV6
+/* File with users to allow even with /etc/nologin in place */
+#undef NOLOGIN_ALLOW_FILE
+
@BOTTOM@
/* ******************* Shouldn't need to edit below this line ************** */
diff -ruw -x configure ../dist/auth.c ./auth.c
--- ../dist/auth.c Mon Jun 26 03:31:33 2000
+++ ./auth.c Sat...
2002 Mar 19
2
openssh 3.1p1: ToS trouble
Hi,
I noticed that the Type of Service bit for minimize delay is set in
client->server packets only. Is this OS-specific or is there another
reason for this?
Here is a tcpdump of an interactive connection:
217.225.98.212.22 > 134.169.34.19.45870: P 1:49(48) ack 48 win 12008 (DF)
134.169.34.19.45870 > 217.225.98.212.22: P 48:96(48) ack 49 win 25416 (DF) [tos 0x10]
217.225.98.212.22
2002 May 20
0
Openssh 3.2.2p1 KRB5 addition
...or4);
+ memset(&addr_6or4, 0, sizeof(addr_6or4));
+ if (getsockname(socket, (struct sockaddr *) &addr_6or4, &addr_6or4_len) < 0) {
+ debug("getsockname failed: %.100s", strerror(errno));
+ fatal_cleanup();
+ }
+ #ifdef IPV4_IN_IPV6
+ if (addr_6or4.ss_family == AF_INET6) {
+ struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&addr_6or4;
+
+ /* Detect IPv4 in IPv6 mapped address and convert it to */
+ /* plain (AF_INET) IPv4 address */
+ if (IN6_IS_AD...
2000 Dec 07
1
[PATCH] tis authserv support
...sh.0 sshd.0 sftp-server.0
diff -urN openssh-2.3.0p1/acconfig.h openssh-2.3.0p1-tis/acconfig.h
--- openssh-2.3.0p1/acconfig.h Wed Oct 18 15:11:44 2000
+++ openssh-2.3.0p1-tis/acconfig.h Thu Dec 7 18:38:42 2000
@@ -276,6 +276,8 @@
/* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
#undef IPV4_IN_IPV6
+#undef TIS_AUTH
+
@BOTTOM@
/* ******************* Shouldn't need to edit below this line ************** */
diff -urN openssh-2.3.0p1/auth1.c openssh-2.3.0p1-tis/auth1.c
--- openssh-2.3.0p1/auth1.c Sat Oct 14 07:23:11 2000
+++ openssh-2.3.0p1-tis/auth1.c Thu Dec 7 18:38:42 2000
@@ -12,6...
2000 Aug 24
0
patch for a few things
...ho " scp progress meter by default: $PROGRESS_METER"
echo ""
*** ./acconfig.h.orig Tue Aug 22 20:46:23 2000
--- ./acconfig.h Thu Aug 24 11:02:14 2000
***************
*** 248,253 ****
--- 248,256 ----
/* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
#undef IPV4_IN_IPV6
+ /* Don't display scp progress meter by default */
+ #undef DEFAULT_NO_PROGRESS
+
@BOTTOM@
/* ******************* Shouldn't need to edit below this line ************** */
*** ./config.h.in.orig Tue Aug 22 21:45:36 2000
--- ./config.h.in Thu Aug 24 11:02:14 2000
***************
*...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
.../
/* #undef HAVE_DEV_PTS_AND_PTC */
/* #undef IPADDR_IN_DISPLAY */
#define USER_PATH "/usr/bin:/bin:/usr/sbin:/sbin:/users/eckmann/export/ssh/bin"
#define _PATH_SSH_PIDDIR "/var/run"
/* #undef BROKEN_GETADDRINFO */
/* #undef BROKEN_UPDWTMPX */
#define DONT_TRY_OTHER_AF 1
#define IPV4_IN_IPV6 1
/* #undef BSD_AUTH */
/* #undef NO_X11_UNIX_SOCKETS */
/* #undef NO_IPPORT_RESERVED_CONCEPT */
/* #undef BROKEN_SAVED_UIDS */
#define GLOB_HAS_ALTDIRFUNC 1
/* #undef GLOB_HAS_GL_MATCHC */
/* #undef BROKEN_ONE_BYTE_DIRENT_D_NAME */
/* #undef HAVE_ETC_DEFAULT_LOGIN */
/* #undef HAVE_GETOPT_OPTRESET...