Update plibc header
[oweals/gnunet.git] / src / util / test_mq_client.c
index 88e072c2b622a62f7d7e9e763204af228d691ec9..4e460ebdb565b2bd918239efefbc1cfa0d9e4e82 100644 (file)
@@ -23,7 +23,6 @@
  * @brief tests for mq with connection client
  */
 #include "platform.h"
-#include "gnunet_common.h"
 #include "gnunet_util_lib.h"
 
 #define PORT 23336
@@ -49,13 +48,8 @@ recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
          const struct GNUNET_MessageHeader *message)
 {
   received++;
-
-  printf ("received\n");
-
-
   if ((received == 2) && (GNUNET_YES == notify))
   {
-    printf ("done\n");
     GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
     return;
   }
@@ -103,7 +97,6 @@ void send_cb (void *cls)
 {
   /* the notify should only be called once */
   GNUNET_assert (GNUNET_NO == notify);
-  printf ("notify sent\n");
   notify = GNUNET_YES;
 }