diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-04-09 23:14:03 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-04-09 23:14:03 +0000 |
commit | 29e6158507a0758192075ac6ece7ba8e75ddc49a (patch) | |
tree | b91ded48da322f8ba4c9bb0f5504228aa036c2d1 /src/util/test_server_with_client_unix.c | |
parent | 5dfcb058ab5db9ae0c4b147d8a99c64ca0980028 (diff) |
small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to all scheduler tasks; instead, allow the relatively few tasks that need it to obtain the context via GNUNET_SCHEDULER_get_task_context()
Diffstat (limited to 'src/util/test_server_with_client_unix.c')
-rw-r--r-- | src/util/test_server_with_client_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/test_server_with_client_unix.c b/src/util/test_server_with_client_unix.c index 1d6f5dbed9..ec84b08f8a 100644 --- a/src/util/test_server_with_client_unix.c +++ b/src/util/test_server_with_client_unix.c @@ -39,7 +39,7 @@ static int ok; static void -send_done (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) +send_done (void *cls) { struct GNUNET_SERVER_Client *argclient = cls; @@ -74,7 +74,7 @@ recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient, static void -clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) +clean_up (void *cls) { GNUNET_SERVER_destroy (server); server = NULL; @@ -126,7 +126,7 @@ static struct GNUNET_SERVER_MessageHandler handlers[] = { static void -task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) +task (void *cls) { struct sockaddr_un un; const char *unixpath = "/tmp/testsock"; |