aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vpn/vpn_api.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vpn/vpn_api.c b/src/vpn/vpn_api.c
index f3068f7c2..da597d801 100644
--- a/src/vpn/vpn_api.c
+++ b/src/vpn/vpn_api.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2012 Christian Grothoff 3 Copyright (C) 2012, 2016 Christian Grothoff
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -108,7 +108,7 @@ struct GNUNET_VPN_RedirectionRequest
108 GNUNET_VPN_AllocationCallback cb; 108 GNUNET_VPN_AllocationCallback cb;
109 109
110 /** 110 /**
111 * Closure for 'cb'. 111 * Closure for @e cb.
112 */ 112 */
113 void *cb_cls; 113 void *cb_cls;
114 114
@@ -138,7 +138,7 @@ struct GNUNET_VPN_RedirectionRequest
138 int result_af; 138 int result_af;
139 139
140 /** 140 /**
141 * Address family of 'addr'. AF_INET or AF_INET6. 141 * Address family of @e addr. AF_INET or AF_INET6.
142 */ 142 */
143 int addr_af; 143 int addr_af;
144 144
@@ -236,7 +236,7 @@ receive_response (void *cls,
236/** 236/**
237 * We're ready to transmit a request to the VPN service. Do it. 237 * We're ready to transmit a request to the VPN service. Do it.
238 * 238 *
239 * @param cls the 'struct GNUNET_VPN_Handle*' 239 * @param cls the `struct GNUNET_VPN_Handle*`
240 * @param size number of bytes available in buf 240 * @param size number of bytes available in buf
241 * @param buf where to copy the request 241 * @param buf where to copy the request
242 * @return number of bytes copied to 'buf' 242 * @return number of bytes copied to 'buf'
@@ -443,7 +443,7 @@ GNUNET_VPN_cancel_request (struct GNUNET_VPN_RedirectionRequest *rr)
443 * @param expiration_time at what time should the redirection expire? 443 * @param expiration_time at what time should the redirection expire?
444 * (this should not impact connections that are active at that time) 444 * (this should not impact connections that are active at that time)
445 * @param cb function to call with the IP 445 * @param cb function to call with the IP
446 * @param cb_cls closure for cb 446 * @param cb_cls closure for @a cb
447 * @return handle to cancel the request (means the callback won't be 447 * @return handle to cancel the request (means the callback won't be
448 * invoked anymore; the mapping may or may not be established 448 * invoked anymore; the mapping may or may not be established
449 * anyway) 449 * anyway)
@@ -491,7 +491,7 @@ GNUNET_VPN_redirect_to_peer (struct GNUNET_VPN_Handle *vh,
491 * @param expiration_time at what time should the redirection expire? 491 * @param expiration_time at what time should the redirection expire?
492 * (this should not impact connections that are active at that time) 492 * (this should not impact connections that are active at that time)
493 * @param cb function to call with the IP 493 * @param cb function to call with the IP
494 * @param cb_cls closure for cb 494 * @param cb_cls closure for @a cb
495 * @return handle to cancel the request (means the callback won't be 495 * @return handle to cancel the request (means the callback won't be
496 * invoked anymore; the mapping may or may not be established 496 * invoked anymore; the mapping may or may not be established
497 * anyway) 497 * anyway)