aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-12-15 07:18:26 +0000
committerBart Polot <bart@net.in.tum.de>2014-12-15 07:18:26 +0000
commit1017fd2db6ab73a8f2c823f5ca21f3f87058f842 (patch)
tree1afd385f62e8eef81231428149cf1de029d4a0a9 /src/cadet
parent7306034452e8c3af8460b3c6471a6eb19ecf886e (diff)
downloadgnunet-1017fd2db6ab73a8f2c823f5ca21f3f87058f842.tar.gz
gnunet-1017fd2db6ab73a8f2c823f5ca21f3f87058f842.zip
- Always send traffic coming from channel, even overfilling connection buffer. Clients won't get an ACK anyway.
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/gnunet-service-cadet_channel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cadet/gnunet-service-cadet_channel.c b/src/cadet/gnunet-service-cadet_channel.c
index c77cc5fc4..08ef46209 100644
--- a/src/cadet/gnunet-service-cadet_channel.c
+++ b/src/cadet/gnunet-service-cadet_channel.c
@@ -2365,10 +2365,10 @@ GCCH_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2365 chq->copy->rel, chq->copy->chq, chq->copy->type); 2365 chq->copy->rel, chq->copy->chq, chq->copy->type);
2366 } 2366 }
2367 LOG (GNUNET_ERROR_TYPE_DEBUG, " new chq: %p\n", chq); 2367 LOG (GNUNET_ERROR_TYPE_DEBUG, " new chq: %p\n", chq);
2368 chq->copy->chq = chq; 2368 chq->copy->chq = chq;
2369 chq->tq = GCT_send_prebuilt_message (message, ch->t, NULL, 2369 chq->tq = GCT_send_prebuilt_message (message, ch->t, NULL,
2370 NULL != existing_copy, 2370 GNUNET_YES,
2371 &ch_message_sent, chq); 2371 &ch_message_sent, chq);
2372 /* q itself is stored in copy */ 2372 /* q itself is stored in copy */
2373 GNUNET_assert (NULL != chq->tq || GNUNET_NO != ch->destroy); 2373 GNUNET_assert (NULL != chq->tq || GNUNET_NO != ch->destroy);
2374 } 2374 }