]> git.pld-linux.org Git - packages/wget.git/commitdiff
- patch not hunking, but wget not compiling,
authordjrzulf <djrzulf@pld-linux.org>
Mon, 1 Apr 2002 20:19:49 +0000 (20:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wget-1.8.1-ipv6.patch -> 1.3

wget-1.8.1-ipv6.patch

index 6490276c579c7d0ae8fbafd74b0003b3f253013b..a257be5e33c1ffcea5b656b0364ab64ce6934883 100644 (file)
@@ -143,21 +143,76 @@ diff -ubr wget-1.8.1/src/connect.c wget-1.8.1_ipv6/src/connect.c
    return res;
  }
 
-diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
---- wget-1.8.1/src/host.c       Tue Dec 11 08:32:57 2001
-+++ wget-1.8.1_ipv6/src/host.c  Tue Jan 15 01:14:05 2002
+diff -ubr wget-1.8.1/src/init.c wget-1.8.1_ipv6/src/init.c
+--- wget-1.8.1/src/init.c       Thu Dec 13 19:19:03 2001
++++ wget-1.8.1_ipv6/src/init.c  Tue Jan 15 01:34:06 2002
+@@ -526,8 +526,8 @@
+ cmd_address (const char *com, const char *val, void *closure)
+ {
+   struct address_list *al;
+-  struct sockaddr_in sin;
+-  struct sockaddr_in **target = (struct sockaddr_in **)closure;
++  SOCKADDR_IN sin;
++  SOCKADDR_IN **target = (SOCKADDR_IN **)closure;
+
+   memset (&sin, '\0', sizeof (sin));
+
+@@ -538,11 +538,16 @@
+               exec_name, com, val);
+       return 0;
+     }
++#ifdef IPV6
++  sin.sin6_family = family;
++  sin.sin6_port = 0;
++  address_list_copy_one (al, 0, (unsigned char *)&sin.sin6_addr);
++#else
++  sin.sin_family = family;
++  sin.sin_port = 0;
+   address_list_copy_one (al, 0, (unsigned char *)&sin.sin_addr);
++#endif
+   address_list_release (al);
+-
+-  sin.sin_family = AF_INET;
+-  sin.sin_port = 0;
+
+   FREE_MAYBE (*target);
+
+diff -ubr wget-1.8.1/src/options.h wget-1.8.1_ipv6/src/options.h
+--- wget-1.8.1/src/options.h    Fri Nov 30 07:39:08 2001
++++ wget-1.8.1_ipv6/src/options.h       Tue Jan 15 01:05:44 2002
+@@ -19,6 +19,7 @@
+
+ /* Needed for FDP.  */
+ #include <stdio.h>
++#include "host.h"
+
+ struct options
+ {
+@@ -153,7 +154,7 @@
+   int page_requisites;         /* Whether we need to download all files
+                                   necessary to display a page properly. */
+
+-  struct sockaddr_in *bind_address; /* What local IP address to bind to. */
++  SOCKADDR_IN *bind_address;   /* What local IP address to bind to. */
+
+ #ifdef HAVE_SSL
+   char *sslcertfile;           /* external client cert to use. */
+
+diff -urN wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
+--- wget-1.8.1/src/host.c      Tue Dec 11 09:32:57 2001
++++ wget-1.8.1_ipv6/src/host.c Mon Apr  1 20:49:22 2002
 @@ -18,6 +18,7 @@
  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
-
  #include <config.h>
 +#include <netdb.h>
-
  #include <stdio.h>
  #include <stdlib.h>
 @@ -65,8 +66,13 @@
  # endif
  #endif
-
 -/* An IPv4 address is simply a 4-byte quantity. */
 -typedef unsigned char ipv4_address[4];
 +#ifdef IPV6
@@ -167,35 +222,35 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
 +#endif
 +
 +
-
  /* Mapping between known hosts and to lists of their addresses. */
-
 @@ -77,7 +83,7 @@
-
  struct address_list {
-   int count;                   /* number of adrresses */
--  ipv4_address *addresses;     /* pointer to the string of addresses */
-+  ip_address *addresses;       /* pointer to the string of addresses */
-
-   int faulty;                  /* number of addresses known not to
-                                   work. */
+   int count;                  /* number of adrresses */
+-  ipv4_address *addresses;    /* pointer to the string of addresses */
++  ip_address *addresses;      /* pointer to the string of addresses */
+   int faulty;                 /* number of addresses known not to
+                                  work. */
 @@ -101,7 +107,7 @@
-                       unsigned char *ip_store)
+                      unsigned char *ip_store)
  {
    assert (index >= al->faulty && index < al->count);
 -  memcpy (ip_store, al->addresses + index, sizeof (ipv4_address));
 +  memcpy (ip_store, al->addresses + index, sizeof (ip_address));
  }
-
  /* Check whether two address lists have all their IPs in common.  */
 @@ -114,7 +120,7 @@
    if (al1->count != al2->count)
      return 0;
    return 0 == memcmp (al1->addresses, al2->addresses,
--                     al1->count * sizeof (ipv4_address));
-+                     al1->count * sizeof (ip_address));
+-                    al1->count * sizeof (ipv4_address));
++                    al1->count * sizeof (ip_address));
  }
-
  /* Mark the INDEXth element of AL as faulty, so that the next time
 @@ -152,11 +158,11 @@
    assert (count > 0);
@@ -204,11 +259,11 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
 -  al->addresses = xmalloc (count * sizeof (ipv4_address));
 +  al->addresses = xmalloc (count * sizeof (ip_address));
    al->refcount  = 1;
-
    for (i = 0; i < count; i++)
 -    memcpy (al->addresses + i, h_addr_list[i], sizeof (ipv4_address));
 +    memcpy (al->addresses + i, h_addr_list[i], sizeof (ip_address));
-
    return al;
  }
 @@ -169,9 +175,9 @@
@@ -220,7 +275,7 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
    al->refcount  = 1;
 -  memcpy (al->addresses, addr, sizeof (ipv4_address));
 +  memcpy (al->addresses, addr, sizeof (ip_address));
-
    return al;
  }
 @@ -233,13 +239,12 @@
@@ -230,7 +285,7 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
 -  unsigned long addr;
 +  ip_address addr;
    struct hostent *hptr;
-
 -  /* If the address is of the form d.d.d.d, no further lookup is
 -     needed.  */
 -  addr = (unsigned long)inet_addr (host);
@@ -240,9 +295,9 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
 +  if(0>=inet_pton(family,host,addr))
      {
        /* ADDR is defined to be in network byte order, which is what
-         this returns, so we can just copy it to STORE_IP.  However,
+        this returns, so we can just copy it to STORE_IP.  However,
 @@ -248,15 +253,15 @@
-         we copy the correct four bytes.  */
+        we copy the correct four bytes.  */
        int offset;
  #ifdef WORDS_BIGENDIAN
 -      offset = sizeof (unsigned long) - sizeof (ipv4_address);
@@ -252,18 +307,18 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
  #endif
        return address_list_new_one ((char *)&addr + offset);
      }
-
 -  /* By now we know that the host name we got is not of the form
 -     d.d.d.d.  Try to find it in our cache of host names.  */
 +  /* By now we know that the host name we got is not numerialcal represantation
 +     for <family>.  Try to find it in our cache of host names.  */
    if (host_name_addresses_map)
      al = hash_table_get (host_name_addresses_map, host);
-
 @@ -270,8 +275,8 @@
    if (!silent)
      logprintf (LOG_VERBOSE, _("Resolving %s... "), host);
-
 -  /* Look up the host using gethostbyname().  */
 -  hptr = gethostbyname (host);
 +  /* Look up the host using getipnodebyname().  */
@@ -271,88 +326,3 @@ diff -ubr wget-1.8.1/src/host.c wget-1.8.1_ipv6/src/host.c
    if (!hptr)
      {
        if (!silent)
-diff -ubr wget-1.8.1/src/host.h wget-1.8.1_ipv6/src/host.h
---- wget-1.8.1/src/host.h       Tue Dec 11 08:32:58 2001
-+++ wget-1.8.1_ipv6/src/host.h  Tue Jan 15 01:37:06 2002
-@@ -44,4 +44,26 @@
-
- void host_cleanup PARAMS ((void));
-
-+
-+#define IPV6
-+/*
-+       IPv6 support added by Thomas Lussnig <lussnig@bewegungsmelder.de>
-+       Date: 15.01.2001 02:36:05
-+       If there are mistakes please inform me, but i will not work till the
-+       morning on it.
-+*/
-+
-+#ifdef IPV6
-+#include <netdb.h>
-+/* An IPv6 address is simply a 16-byte quantity. */
-+typedef unsigned char ip_address[16];
-+typedef struct sockaddr_in6    SOCKADDR_IN;
-+#else
-+/* An IPv4 address is simply a 4-byte quantity. */
-+typedef unsigned char ip_address[4];
-+typedef struct sockaddr_in     SOCKADDR_IN;
-+#endif
-+extern int     family; /* defined in host.c */
-+
-+
- #endif /* HOST_H */
-Only in wget-1.8.1_ipv6/src: host.h~
-diff -ubr wget-1.8.1/src/init.c wget-1.8.1_ipv6/src/init.c
---- wget-1.8.1/src/init.c       Thu Dec 13 19:19:03 2001
-+++ wget-1.8.1_ipv6/src/init.c  Tue Jan 15 01:34:06 2002
-@@ -526,8 +526,8 @@
- cmd_address (const char *com, const char *val, void *closure)
- {
-   struct address_list *al;
--  struct sockaddr_in sin;
--  struct sockaddr_in **target = (struct sockaddr_in **)closure;
-+  SOCKADDR_IN sin;
-+  SOCKADDR_IN **target = (SOCKADDR_IN **)closure;
-
-   memset (&sin, '\0', sizeof (sin));
-
-@@ -538,11 +538,16 @@
-               exec_name, com, val);
-       return 0;
-     }
-+#ifdef IPV6
-+  sin.sin6_family = family;
-+  sin.sin6_port = 0;
-+  address_list_copy_one (al, 0, (unsigned char *)&sin.sin6_addr);
-+#else
-+  sin.sin_family = family;
-+  sin.sin_port = 0;
-   address_list_copy_one (al, 0, (unsigned char *)&sin.sin_addr);
-+#endif
-   address_list_release (al);
--
--  sin.sin_family = AF_INET;
--  sin.sin_port = 0;
-
-   FREE_MAYBE (*target);
-
-diff -ubr wget-1.8.1/src/options.h wget-1.8.1_ipv6/src/options.h
---- wget-1.8.1/src/options.h    Fri Nov 30 07:39:08 2001
-+++ wget-1.8.1_ipv6/src/options.h       Tue Jan 15 01:05:44 2002
-@@ -19,6 +19,7 @@
-
- /* Needed for FDP.  */
- #include <stdio.h>
-+#include "host.h"
-
- struct options
- {
-@@ -153,7 +154,7 @@
-   int page_requisites;         /* Whether we need to download all files
-                                   necessary to display a page properly. */
-
--  struct sockaddr_in *bind_address; /* What local IP address to bind to. */
-+  SOCKADDR_IN *bind_address;   /* What local IP address to bind to. */
-
- #ifdef HAVE_SSL
-   char *sslcertfile;           /* external client cert to use. */
This page took 0.062691 seconds and 4 git commands to generate.