Displaying 5 results from an estimated 5 matches for "in6_is_addr_loopback".
2002 Jun 28
0
[Bug 316] New: ifdefs for systems without IPV6
...2001
+++ sshconnect.c Wed Oct 3 14:28:15 2001
@@ -577,11 +577,13 @@
sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
salen = sizeof(struct sockaddr_in);
break;
+#ifdef HAVE_STRUCT_SOCKADDR_IN6
case AF_INET6:
local = IN6_IS_ADDR_LOOPBACK(
&(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
salen = sizeof(struct sockaddr_in6);
break;
+#endif
default:
local = 0;
salen = sizeof(struct sockaddr_storage);
------- You are receiving this ma...
2002 Oct 21
0
[Bug 418] New: Allow to build on systems without IPV6
...2001
+++ sshconnect.c Wed Oct 3 14:28:15 2001
@@ -577,11 +577,13 @@
sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
salen = sizeof(struct sockaddr_in);
break;
+#ifdef HAVE_STRUCT_SOCKADDR_IN6
case AF_INET6:
local = IN6_IS_ADDR_LOOPBACK(
&(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
salen = sizeof(struct sockaddr_in6);
break;
+#endif
default:
local = 0;
salen = sizeof(struct sockaddr_storage);
------- You are receiving this ma...
2002 Oct 21
2
[Bug 418] Allow to build on systems without IPV6
http://bugzilla.mindrot.org/show_bug.cgi?id=418
dirk.meyer at dinoex.sub.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|Miscellaneous |Build system
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the
2000 Sep 11
2
Problems/patches for BSD/OS 4.0.1
Two small problems with 2.2.0p1 on BSD/OS 4.0.1, both invoving the
internal entropy collector:
1) The ``ls'' commands in ssh_prng_cmds.in all use -n, which isn't valid
on BSD/OS and thus caused them all to fail when fixprogs checked them.
BSD/OS does, however, have a -T flag which gives complete timestamp
information (month, day, year, hour, minute, and second), which seems
like a
2009 May 08
0
Wine release 1.1.21
...uired.
ole32: Don't ask for a name if it's not required.
ole32: Implement GetDataHere.
Hwang YunSong (2):
winedbg: New Korean resource.
notepad: Updated Korean resource.
Jeff Latimer (5):
include: Define IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT and code for IN6_IS_ADDR_LOOPBACK.
ws2_32/tests: Add tests for Inet_Ntop and inet_ntoa.
ws2_32: Make inet_ntop conform to msdn definition.
ws2_32/tests: IPv6 tests for WSAAddressToStringA.
ws2_32: IPv6 functionality for WSAAddressToStringA.
Juan Lang (4):
cryptui: If an input file name is given to Cry...