aboutsummaryrefslogtreecommitdiff
path: root/src/util/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/server.c')
-rw-r--r--src/util/server.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util/server.c b/src/util/server.c
index 504391bc7..31d298e3a 100644
--- a/src/util/server.c
+++ b/src/util/server.c
@@ -611,9 +611,9 @@ warn_no_receive_done (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
611 _ 611 _
612 ("Processing code for message of type %u did not call GNUNET_SERVER_receive_done after %llums\n"), 612 ("Processing code for message of type %u did not call GNUNET_SERVER_receive_done after %llums\n"),
613 (unsigned int) client->warn_type, 613 (unsigned int) client->warn_type,
614 (unsigned long long) GNUNET_TIME_absolute_get_duration (client-> 614 (unsigned long long)
615 warn_start). 615 GNUNET_TIME_absolute_get_duration
616 rel_value); 616 (client->warn_start).rel_value);
617} 617}
618 618
619 619
@@ -730,9 +730,9 @@ GNUNET_SERVER_inject (struct GNUNET_SERVER_Handle *server,
730 * @param addrlen length of addr 730 * @param addrlen length of addr
731 * @param errCode code indicating errors receiving, 0 for success 731 * @param errCode code indicating errors receiving, 0 for success
732 */ 732 */
733static void process_incoming (void *cls, const void *buf, size_t available, 733static void
734 const struct sockaddr *addr, socklen_t addrlen, 734process_incoming (void *cls, const void *buf, size_t available,
735 int errCode); 735 const struct sockaddr *addr, socklen_t addrlen, int errCode);
736 736
737 737
738/** 738/**