aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_address_to_string.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-01-08 17:51:53 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-01-08 17:51:53 +0000
commit5f05330cb3d9ec30347c07522de00624de9d6c67 (patch)
tree213d4a9fdd07a2017c5768d609280fce4b6f146c /src/transport/transport_api_address_to_string.c
parentce8e0739623ee25d2a29a75f393027a42bbe4d4f (diff)
downloadgnunet-5f05330cb3d9ec30347c07522de00624de9d6c67.tar.gz
gnunet-5f05330cb3d9ec30347c07522de00624de9d6c67.zip
neighbour monitoring api implemented
Diffstat (limited to 'src/transport/transport_api_address_to_string.c')
-rw-r--r--src/transport/transport_api_address_to_string.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/transport_api_address_to_string.c b/src/transport/transport_api_address_to_string.c
index 0fb0623dc..0cf0111b3 100644
--- a/src/transport/transport_api_address_to_string.c
+++ b/src/transport/transport_api_address_to_string.c
@@ -170,15 +170,15 @@ GNUNET_TRANSPORT_address_to_string (const struct GNUNET_CONFIGURATION_Handle
170/** 170/**
171 * Cancel request for address conversion. 171 * Cancel request for address conversion.
172 * 172 *
173 * @param alc handle for the request to cancel 173 * @param pic the context handle
174 */ 174 */
175void 175void
176GNUNET_TRANSPORT_address_to_string_cancel (struct 176GNUNET_TRANSPORT_address_to_string_cancel (struct
177 GNUNET_TRANSPORT_AddressToStringContext 177 GNUNET_TRANSPORT_AddressToStringContext
178 *alc) 178 *pic)
179{ 179{
180 GNUNET_CLIENT_disconnect (alc->client); 180 GNUNET_CLIENT_disconnect (pic->client);
181 GNUNET_free (alc); 181 GNUNET_free (pic);
182} 182}
183 183
184 184