aboutsummaryrefslogtreecommitdiff
path: root/src/nat-auto/gnunet-service-nat-auto.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nat-auto/gnunet-service-nat-auto.c')
-rw-r--r--src/nat-auto/gnunet-service-nat-auto.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/nat-auto/gnunet-service-nat-auto.c b/src/nat-auto/gnunet-service-nat-auto.c
index fafc4d382..ae570c351 100644
--- a/src/nat-auto/gnunet-service-nat-auto.c
+++ b/src/nat-auto/gnunet-service-nat-auto.c
@@ -58,7 +58,7 @@ struct ClientHandle
58 * Kept in a DLL. 58 * Kept in a DLL.
59 */ 59 */
60 struct ClientHandle *next; 60 struct ClientHandle *next;
61 61
62 /** 62 /**
63 * Kept in a DLL. 63 * Kept in a DLL.
64 */ 64 */
@@ -66,7 +66,7 @@ struct ClientHandle
66 66
67 /** 67 /**
68 * Underlying handle for this client with the service. 68 * Underlying handle for this client with the service.
69 */ 69 */
70 struct GNUNET_SERVICE_Client *client; 70 struct GNUNET_SERVICE_Client *client;
71 71
72 /** 72 /**
@@ -98,12 +98,12 @@ struct AutoconfigContext
98 98
99 /** 99 /**
100 * Configuration we are creating. 100 * Configuration we are creating.
101 */ 101 */
102 struct GNUNET_CONFIGURATION_Handle *c; 102 struct GNUNET_CONFIGURATION_Handle *c;
103 103
104 /** 104 /**
105 * Original configuration (for diffing). 105 * Original configuration (for diffing).
106 */ 106 */
107 struct GNUNET_CONFIGURATION_Handle *orig; 107 struct GNUNET_CONFIGURATION_Handle *orig;
108 108
109 /** 109 /**
@@ -134,7 +134,7 @@ struct AutoconfigContext
134 * Head of client DLL. 134 * Head of client DLL.
135 */ 135 */
136static struct ClientHandle *ch_head; 136static struct ClientHandle *ch_head;
137 137
138/** 138/**
139 * Tail of client DLL. 139 * Tail of client DLL.
140 */ 140 */
@@ -209,7 +209,7 @@ conclude_autoconfig_request (void *cls)
209 size_t c_size; 209 size_t c_size;
210 char *buf; 210 char *buf;
211 struct GNUNET_CONFIGURATION_Handle *diff; 211 struct GNUNET_CONFIGURATION_Handle *diff;
212 212
213 ac->timeout_task = NULL; 213 ac->timeout_task = NULL;
214 terminate_ac_activities (ac); 214 terminate_ac_activities (ac);
215 215
@@ -331,7 +331,7 @@ handle_autoconfig_request (void *cls,
331 &conclude_autoconfig_request, 331 &conclude_autoconfig_request,
332 ac); 332 ac);
333 ac->enable_upnpc = GNUNET_SYSERR; /* undecided */ 333 ac->enable_upnpc = GNUNET_SYSERR; /* undecided */
334 334
335 /* Probe for upnpc */ 335 /* Probe for upnpc */
336 if (GNUNET_SYSERR == 336 if (GNUNET_SYSERR ==
337 GNUNET_OS_check_helper_binary ("upnpc", 337 GNUNET_OS_check_helper_binary ("upnpc",
@@ -349,7 +349,7 @@ handle_autoconfig_request (void *cls,
349 } 349 }
350 update_enable_upnpc_option (ac); 350 update_enable_upnpc_option (ac);
351 351
352 /* Finally, check if we are already done */ 352 /* Finally, check if we are already done */
353 check_autoconfig_finished (ac); 353 check_autoconfig_finished (ac);
354} 354}
355 355