aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_ats_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-17 21:38:46 +0000
committerChristian Grothoff <christian@grothoff.org>2015-01-17 21:38:46 +0000
commit21eb8c5325edec855da64c2318590f5f0afa78a8 (patch)
tree1d7decf2eb2e8f1d2d437abe95cbea6a60dd9676 /src/include/gnunet_ats_service.h
parentc76f29f898f6b1a73f33ce6d2578e06ce8e0a24e (diff)
downloadgnunet-21eb8c5325edec855da64c2318590f5f0afa78a8.tar.gz
gnunet-21eb8c5325edec855da64c2318590f5f0afa78a8.zip
eliminating callback argument and its implementation which are never called in the first place by ATS
Diffstat (limited to 'src/include/gnunet_ats_service.h')
-rw-r--r--src/include/gnunet_ats_service.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/include/gnunet_ats_service.h b/src/include/gnunet_ats_service.h
index 8b1aaf5c7..7be2e4758 100644
--- a/src/include/gnunet_ats_service.h
+++ b/src/include/gnunet_ats_service.h
@@ -386,15 +386,11 @@ GNUNET_ATS_reset_backoff (struct GNUNET_ATS_SchedulingHandle *sh,
386 * 386 *
387 * @param sh handle 387 * @param sh handle
388 * @param peer identity of the peer we need an address for 388 * @param peer identity of the peer we need an address for
389 * @param cont the continuation to indicate success to call with the address
390 * @param cont_cls the closure for the @a cont
391 * @return suggestion handle 389 * @return suggestion handle
392 */ 390 */
393struct GNUNET_ATS_SuggestHandle * 391struct GNUNET_ATS_SuggestHandle *
394GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *sh, 392GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *sh,
395 const struct GNUNET_PeerIdentity *peer, 393 const struct GNUNET_PeerIdentity *peer);
396 GNUNET_ATS_AddressSuggestionCallback cont,
397 void *cont_cls);
398 394
399 395
400/** 396/**