aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_server.c')
-rw-r--r--src/util/test_server.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/util/test_server.c b/src/util/test_server.c
index 577a841ff..59bf8a2f4 100644
--- a/src/util/test_server.c
+++ b/src/util/test_server.c
@@ -60,8 +60,7 @@ finish_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
60 60
61 61
62static void 62static void
63recv_fin_cb (void *cls, 63recv_fin_cb (void *cls, struct GNUNET_SERVER_Client *client,
64 struct GNUNET_SERVER_Client *client,
65 const struct GNUNET_MessageHeader *message) 64 const struct GNUNET_MessageHeader *message)
66{ 65{
67 GNUNET_assert (ok == 5); 66 GNUNET_assert (ok == 5);
@@ -98,8 +97,7 @@ reply_msg (void *cls, size_t size, void *buf)
98 97
99 98
100static void 99static void
101recv_cb (void *cls, 100recv_cb (void *cls, struct GNUNET_SERVER_Client *client,
102 struct GNUNET_SERVER_Client *client,
103 const struct GNUNET_MessageHeader *message) 101 const struct GNUNET_MessageHeader *message)
104{ 102{
105 GNUNET_assert (ok == 2); 103 GNUNET_assert (ok == 2);
@@ -111,8 +109,8 @@ recv_cb (void *cls,
111 GNUNET_assert (NULL != 109 GNUNET_assert (NULL !=
112 GNUNET_SERVER_notify_transmit_ready (client, 110 GNUNET_SERVER_notify_transmit_ready (client,
113 ntohs (message->size), 111 ntohs (message->size),
114 TIMEOUT, 112 TIMEOUT, &reply_msg,
115 &reply_msg, NULL)); 113 NULL));
116} 114}
117 115
118 116