gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r21040 - gnunet/src/dht


From: gnunet
Subject: [GNUnet-SVN] r21040 - gnunet/src/dht
Date: Thu, 19 Apr 2012 19:01:38 +0200

Author: grothoff
Date: 2012-04-19 19:01:38 +0200 (Thu, 19 Apr 2012)
New Revision: 21040

Modified:
   gnunet/src/dht/gnunet-service-dht_clients.c
Log:
-fix

Modified: gnunet/src/dht/gnunet-service-dht_clients.c
===================================================================
--- gnunet/src/dht/gnunet-service-dht_clients.c 2012-04-19 16:47:01 UTC (rev 
21039)
+++ gnunet/src/dht/gnunet-service-dht_clients.c 2012-04-19 17:01:38 UTC (rev 
21040)
@@ -87,7 +87,7 @@
    * Handle to the current transmission request, NULL
    * if none pending.
    */
-  struct GNUNET_CONNECTION_TransmitHandle *transmit_handle;
+  struct GNUNET_SERVER_TransmitHandle *transmit_handle;
 
   /**
    * Linked list of pending messages for this client
@@ -326,7 +326,7 @@
   pos = find_active_client (client);
   GNUNET_CONTAINER_DLL_remove (client_head, client_tail, pos);
   if (pos->transmit_handle != NULL)
-    GNUNET_CONNECTION_notify_transmit_ready_cancel (pos->transmit_handle);
+    GNUNET_SERVER_notify_transmit_ready_cancel (pos->transmit_handle);
   while (NULL != (reply = pos->pending_head))
   {
     GNUNET_CONTAINER_DLL_remove (pos->pending_head, pos->pending_tail, reply);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]