aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ats/ats_api_scheduling.c2
-rw-r--r--src/include/gnunet_transport_plugin.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ats/ats_api_scheduling.c b/src/ats/ats_api_scheduling.c
index 42539fc9f..db71d1e1e 100644
--- a/src/ats/ats_api_scheduling.c
+++ b/src/ats/ats_api_scheduling.c
@@ -353,7 +353,7 @@ find_session (struct GNUNET_ATS_SchedulingHandle *sh, uint32_t session_id,
353 memcmp (peer, sh->session_array[session_id].session, 353 memcmp (peer, sh->session_array[session_id].session,
354 sizeof (struct GNUNET_PeerIdentity))) 354 sizeof (struct GNUNET_PeerIdentity)))
355 { 355 {
356 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "ats-scheduling-api", 356 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "ats-scheduling-api",
357 "Session %p belongs to peer `%s'\n", 357 "Session %p belongs to peer `%s'\n",
358 sh->session_array[session_id].session, GNUNET_i2s_full ((struct GNUNET_PeerIdentity *)sh->session_array[session_id].session)); 358 sh->session_array[session_id].session, GNUNET_i2s_full ((struct GNUNET_PeerIdentity *)sh->session_array[session_id].session));
359/* 359/*
diff --git a/src/include/gnunet_transport_plugin.h b/src/include/gnunet_transport_plugin.h
index 16c9c0165..3fb6e2e08 100644
--- a/src/include/gnunet_transport_plugin.h
+++ b/src/include/gnunet_transport_plugin.h
@@ -155,12 +155,12 @@ typedef struct GNUNET_ATS_Information
155 * @param addr one of the addresses of the host 155 * @param addr one of the addresses of the host
156 * the specific address format depends on the transport 156 * the specific address format depends on the transport
157 * @param addrlen length of the address 157 * @param addrlen length of the address
158 * @pararm pluginname name of the plugin 158 * @param dest_plugin plugin to use this address with
159 */ 159 */
160typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls, int add_remove, 160typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls, int add_remove,
161 const void *addr, 161 const void *addr,
162 size_t addrlen, 162 size_t addrlen,
163 const char *pluginname); 163 const char *dest_plugin);
164 164
165 165
166/** 166/**