aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_api_unreliability_constant.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-02-02 17:38:22 +0000
committerChristian Grothoff <christian@grothoff.org>2014-02-02 17:38:22 +0000
commit769c3e9561ea577ca167c74286a5cd092510a5cb (patch)
tree89c8ad4c414a61da8818b081889916ad0e06abaf /src/transport/test_transport_api_unreliability_constant.c
parentfdf369790b040af2ab491e80dab8eb1bb95151a2 (diff)
downloadgnunet-769c3e9561ea577ca167c74286a5cd092510a5cb.tar.gz
gnunet-769c3e9561ea577ca167c74286a5cd092510a5cb.zip
removing depreated 'priority' argument from GNUNET_TRANSPORT_notify_transmit_ready
Diffstat (limited to 'src/transport/test_transport_api_unreliability_constant.c')
-rw-r--r--src/transport/test_transport_api_unreliability_constant.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/test_transport_api_unreliability_constant.c b/src/transport/test_transport_api_unreliability_constant.c
index cd5c2ce24..2ff1e4b0c 100644
--- a/src/transport/test_transport_api_unreliability_constant.c
+++ b/src/transport/test_transport_api_unreliability_constant.c
@@ -333,7 +333,7 @@ notify_ready (void *cls, size_t size, void *buf)
333 while (size - ret >= s); 333 while (size - ret >= s);
334 if (n < TOTAL_MSGS) 334 if (n < TOTAL_MSGS)
335 { 335 {
336 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, s, 0, 336 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, s,
337 TIMEOUT_TRANSMIT, 337 TIMEOUT_TRANSMIT,
338 &notify_ready, NULL); 338 &notify_ready, NULL);
339 msg_scheduled = n; 339 msg_scheduled = n;
@@ -380,7 +380,7 @@ static void
380sendtask () 380sendtask ()
381{ 381{
382 start_time = GNUNET_TIME_absolute_get (); 382 start_time = GNUNET_TIME_absolute_get ();
383 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, get_size (0), 0, 383 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, get_size (0),
384 TIMEOUT_TRANSMIT, &notify_ready, 384 TIMEOUT_TRANSMIT, &notify_ready,
385 NULL); 385 NULL);
386} 386}