aboutsummaryrefslogtreecommitdiff
path: root/src/fragmentation/fragmentation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-04-09 23:14:03 +0000
committerChristian Grothoff <christian@grothoff.org>2016-04-09 23:14:03 +0000
commit29e6158507a0758192075ac6ece7ba8e75ddc49a (patch)
treeb91ded48da322f8ba4c9bb0f5504228aa036c2d1 /src/fragmentation/fragmentation.c
parent5dfcb058ab5db9ae0c4b147d8a99c64ca0980028 (diff)
downloadgnunet-29e6158507a0758192075ac6ece7ba8e75ddc49a.tar.gz
gnunet-29e6158507a0758192075ac6ece7ba8e75ddc49a.zip
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/fragmentation/fragmentation.c')
-rw-r--r--src/fragmentation/fragmentation.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fragmentation/fragmentation.c b/src/fragmentation/fragmentation.c
index a702fd35d..3a55502e7 100644
--- a/src/fragmentation/fragmentation.c
+++ b/src/fragmentation/fragmentation.c
@@ -167,11 +167,9 @@ GNUNET_FRAGMENT_print_ack (const struct GNUNET_MessageHeader *ack)
167 * Transmit the next fragment to the other peer. 167 * Transmit the next fragment to the other peer.
168 * 168 *
169 * @param cls the `struct GNUNET_FRAGMENT_Context` 169 * @param cls the `struct GNUNET_FRAGMENT_Context`
170 * @param tc scheduler context
171 */ 170 */
172static void 171static void
173transmit_next (void *cls, 172transmit_next (void *cls)
174 const struct GNUNET_SCHEDULER_TaskContext *tc)
175{ 173{
176 struct GNUNET_FRAGMENT_Context *fc = cls; 174 struct GNUNET_FRAGMENT_Context *fc = cls;
177 char msg[fc->mtu]; 175 char msg[fc->mtu];