remove reverse dns timeout code
authorMatthias Wachs <wachs@net.in.tum.de>
Thu, 14 Jul 2011 09:16:58 +0000 (09:16 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Thu, 14 Jul 2011 09:16:58 +0000 (09:16 +0000)
src/transport/plugin_transport_tcp.c

index 2a5cfaa8d82054e452f5af5fcb08dd1963784470..168a2b344920fc6ae6c96fb62c63a383266bb057 100644 (file)
@@ -1293,16 +1293,6 @@ struct PrettyPrinterContext
    */
   void *asc_cls;
 
-  /**
-   * The address
-   */
-  void * addr;
-
-  /**
-   * address length
-   */
-  size_t addr_len;
-
   /**
    * Port to add after the IP address.
    */
@@ -1324,9 +1314,7 @@ append_port (void *cls, const char *hostname)
 
   if (hostname == NULL)
     {
-      ret = strdup(tcp_address_to_string(NULL, ppc->addr, ppc->addr_len));
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error in name resolution: `%s'\n",ret);
-      ppc->asc (ppc->asc_cls, ret);
+      ppc->asc (ppc->asc_cls, NULL);
       GNUNET_free (ppc);
       return;
     }
@@ -1400,13 +1388,10 @@ tcp_plugin_address_pretty_printer (void *cls,
       asc (asc_cls, NULL);
       return;
     }
-  ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext) + addrlen);
+  ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
   ppc->asc = asc;
   ppc->asc_cls = asc_cls;
   ppc->port = port;
-  ppc->addr = &ppc[1];
-  ppc->addr_len = addrlen;
-  memcpy(ppc->addr, addr, addrlen);
   GNUNET_RESOLVER_hostname_get (sb,
                                 sbs,
                                 !numeric, timeout, &append_port, ppc);