(no commit message)
[oweals/gnunet.git] / src / transport / transport_api_address_lookup.c
index da723d71cbb8c29d8d4c14bc69f9be1e352f6761..022d5f03b6dc8561cbe3ed7f8f78a5c106c81c38 100644 (file)
@@ -29,7 +29,7 @@
 
 /**
  * Context for the address lookup.
- */ 
+ */
 struct AddressLookupCtx
 {
   /**
@@ -62,7 +62,7 @@ struct AddressLookupCtx
  *        message with the human-readable address
  */
 static void
-address_response_processor (void *cls, 
+address_response_processor (void *cls,
                            const struct GNUNET_MessageHeader *msg)
 {
   struct AddressLookupCtx *alucb = cls;
@@ -100,7 +100,7 @@ address_response_processor (void *cls,
   GNUNET_CLIENT_receive (alucb->client,
                         &address_response_processor, alucb,
                         GNUNET_TIME_absolute_get_remaining
-                        (alucb->timeout));    
+                        (alucb->timeout));
   alucb->cb (alucb->cb_cls, address);
 }
 
@@ -108,11 +108,10 @@ address_response_processor (void *cls,
 /**
  * Convert a binary address into a human readable address.
  *
- * @param sched scheduler to use
  * @param cfg configuration to use
  * @param address address to convert (binary format)
  * @param addressLen number of bytes in address
- * @param numeric should (IP) addresses be displayed in numeric form 
+ * @param numeric should (IP) addresses be displayed in numeric form
  *                (otherwise do reverse DNS lookup)
  * @param nameTrans name of the transport to which the address belongs
  * @param timeout how long is the lookup allowed to take at most
@@ -120,9 +119,8 @@ address_response_processor (void *cls,
  * @param aluc_cls closure for aluc
  */
 void
-GNUNET_TRANSPORT_address_lookup (struct GNUNET_SCHEDULER_Handle *sched,
-                                 const struct GNUNET_CONFIGURATION_Handle  *cfg, 
-                                const char *address, 
+GNUNET_TRANSPORT_address_lookup (const struct GNUNET_CONFIGURATION_Handle  *cfg,
+                                const char *address,
                                 size_t addressLen,
                                 int numeric,
                                  const char *nameTrans,
@@ -146,7 +144,7 @@ GNUNET_TRANSPORT_address_lookup (struct GNUNET_SCHEDULER_Handle *sched,
       aluc (aluc_cls, NULL);
       return;
     }
-  client = GNUNET_CLIENT_connect (sched, "transport", cfg);
+  client = GNUNET_CLIENT_connect ("transport", cfg);
   if (client == NULL)
     {
       aluc (aluc_cls, NULL);
@@ -168,8 +166,8 @@ GNUNET_TRANSPORT_address_lookup (struct GNUNET_SCHEDULER_Handle *sched,
   aluCB->timeout = abs_timeout;
   aluCB->client = client;
   GNUNET_assert (GNUNET_OK ==
-                GNUNET_CLIENT_transmit_and_get_response (client, 
-                                                         &msg->header, 
+                GNUNET_CLIENT_transmit_and_get_response (client,
+                                                         &msg->header,
                                                          timeout,
                                                          GNUNET_YES,
                                                          &address_response_processor,