aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_transport_plugin.h
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2012-08-25 14:19:21 +0000
committerLRN <lrn1986@gmail.com>2012-08-25 14:19:21 +0000
commit5f6c6235e64474a115281d397850a6299d351280 (patch)
tree58302b54467dc7b78a4fa95778220642dd6e23a0 /src/include/gnunet_transport_plugin.h
parent5bec5a8d66565e3f42aa5b4fc98ab0d87c47e528 (diff)
downloadgnunet-5f6c6235e64474a115281d397850a6299d351280.tar.gz
gnunet-5f6c6235e64474a115281d397850a6299d351280.zip
changes to address notification strike back
Diffstat (limited to 'src/include/gnunet_transport_plugin.h')
-rw-r--r--src/include/gnunet_transport_plugin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gnunet_transport_plugin.h b/src/include/gnunet_transport_plugin.h
index 6a5b0e142..16c9c0165 100644
--- a/src/include/gnunet_transport_plugin.h
+++ b/src/include/gnunet_transport_plugin.h
@@ -155,10 +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 */ 159 */
159typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls, int add_remove, 160typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls, int add_remove,
160 const void *addr, 161 const void *addr,
161 size_t addrlen); 162 size_t addrlen,
163 const char *pluginname);
162 164
163 165
164/** 166/**