aboutsummaryrefslogtreecommitdiff
path: root/src/exit
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-07-25 15:31:07 +0000
committerBart Polot <bart@net.in.tum.de>2012-07-25 15:31:07 +0000
commita79ea321245662f933dc8f9208b26d85d79cbe6c (patch)
tree29484dd39a7d9358884ea86f2fe7e50a6af6173a /src/exit
parent5d2e17869e4d989465d1d3f4c0717745466b52a2 (diff)
downloadgnunet-a79ea321245662f933dc8f9208b26d85d79cbe6c.tar.gz
gnunet-a79ea321245662f933dc8f9208b26d85d79cbe6c.zip
Eliminate mesh priority option
Diffstat (limited to 'src/exit')
-rw-r--r--src/exit/gnunet-daemon-exit.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c
index 337fca481..4f583c5bd 100644
--- a/src/exit/gnunet-daemon-exit.c
+++ b/src/exit/gnunet-daemon-exit.c
@@ -535,7 +535,6 @@ send_to_peer_notify_callback (void *cls, size_t size, void *buf)
535 { 535 {
536 s->th = GNUNET_MESH_notify_transmit_ready (tunnel, 536 s->th = GNUNET_MESH_notify_transmit_ready (tunnel,
537 GNUNET_NO /* corking */, 537 GNUNET_NO /* corking */,
538 0 /* priority */,
539 GNUNET_TIME_UNIT_FOREVER_REL, 538 GNUNET_TIME_UNIT_FOREVER_REL,
540 NULL, 539 NULL,
541 tnq->len, 540 tnq->len,
@@ -553,7 +552,6 @@ send_to_peer_notify_callback (void *cls, size_t size, void *buf)
553 if (NULL != (tnq = s->head)) 552 if (NULL != (tnq = s->head))
554 s->th = GNUNET_MESH_notify_transmit_ready (tunnel, 553 s->th = GNUNET_MESH_notify_transmit_ready (tunnel,
555 GNUNET_NO /* corking */, 554 GNUNET_NO /* corking */,
556 0 /* priority */,
557 GNUNET_TIME_UNIT_FOREVER_REL, 555 GNUNET_TIME_UNIT_FOREVER_REL,
558 NULL, 556 NULL,
559 tnq->len, 557 tnq->len,
@@ -582,7 +580,8 @@ send_packet_to_mesh_tunnel (struct GNUNET_MESH_Tunnel *mesh_tunnel,
582 GNUNET_assert (NULL != s); 580 GNUNET_assert (NULL != s);
583 GNUNET_CONTAINER_DLL_insert_tail (s->head, s->tail, tnq); 581 GNUNET_CONTAINER_DLL_insert_tail (s->head, s->tail, tnq);
584 if (NULL == s->th) 582 if (NULL == s->th)
585 s->th = GNUNET_MESH_notify_transmit_ready (mesh_tunnel, GNUNET_NO /* cork */, 0 /* priority */, 583 s->th = GNUNET_MESH_notify_transmit_ready (mesh_tunnel,
584 GNUNET_NO /* cork */,
586 GNUNET_TIME_UNIT_FOREVER_REL, 585 GNUNET_TIME_UNIT_FOREVER_REL,
587 NULL, tnq->len, 586 NULL, tnq->len,
588 &send_to_peer_notify_callback, 587 &send_to_peer_notify_callback,