gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r15748 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r15748 - gnunet/src/util
Date: Wed, 22 Jun 2011 15:26:33 +0200

Author: wachs
Date: 2011-06-22 15:26:32 +0200 (Wed, 22 Jun 2011)
New Revision: 15748

Modified:
   gnunet/src/util/server.c
Log:


Modified: gnunet/src/util/server.c
===================================================================
--- gnunet/src/util/server.c    2011-06-22 12:33:32 UTC (rev 15747)
+++ gnunet/src/util/server.c    2011-06-22 13:26:32 UTC (rev 15748)
@@ -678,10 +678,11 @@
   type = ntohs (message->type);
   size = ntohs (message->size);
 #if DEBUG_SERVER
+
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Server schedules transmission of %u-byte message of type %u to 
client.\n",
               size, type);
-#endif
+#endif 0
   pos = server->handlers;
   found = GNUNET_NO;
   while (pos != NULL)
@@ -781,7 +782,7 @@
          client->receive_pending = GNUNET_YES;
 #if DEBUG_SERVER
          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                     "Server re-enters receive loop, timeout: %llu.\n", 
client->server->idle_timeout.rel_value);
+                     "Server re-enters receive loop, timeout: %llu.\n", 
client->idle_timeout.rel_value);
 #endif
          GNUNET_CONNECTION_receive (client->connection,
                                     GNUNET_SERVER_MAX_MESSAGE_SIZE - 1,
@@ -856,7 +857,8 @@
 #endif
       GNUNET_SERVER_client_keep (client);
       client->last_activity = GNUNET_TIME_absolute_get ();
-      process_mst (client, ret);
+      client->suspended--;
+      process_mst (client, GNUNET_OK);
       return;
     }
 
@@ -946,6 +948,7 @@
   int ret;
 
 #if DEBUG_SERVER
+
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Tokenizer gives server message of type %u from client\n",
              ntohs (message->type));
@@ -1240,7 +1243,6 @@
 
 size_t transmit_ready_callback_wrapper (void *cls, size_t size, void *buf)
 {
-  int ret;
   struct GNUNET_SERVER_Client *client = cls;
 
   GNUNET_CONNECTION_TransmitReadyNotify callback = client->callback;
@@ -1316,6 +1318,7 @@
 {
   if (client == NULL)
     return;
+
   GNUNET_assert (client->suspended > 0);
   client->suspended--;
   if (success != GNUNET_OK)




reply via email to

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