aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_http.h')
-rw-r--r--src/transport/plugin_transport_http.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/transport/plugin_transport_http.h b/src/transport/plugin_transport_http.h
index d43eb9bab..9a0edb719 100644
--- a/src/transport/plugin_transport_http.h
+++ b/src/transport/plugin_transport_http.h
@@ -118,7 +118,7 @@ struct Plugin
118 /** 118 /**
119 * Task calling transport service about external address 119 * Task calling transport service about external address
120 */ 120 */
121 GNUNET_SCHEDULER_TaskIdentifier notify_ext_task; 121 struct GNUNET_SCHEDULER_Task * notify_ext_task;
122 122
123 /** 123 /**
124 * Plugin name. 124 * Plugin name.
@@ -206,7 +206,7 @@ struct Plugin
206 /** 206 /**
207 * MHD IPv4 task 207 * MHD IPv4 task
208 */ 208 */
209 GNUNET_SCHEDULER_TaskIdentifier server_v4_task; 209 struct GNUNET_SCHEDULER_Task * server_v4_task;
210 210
211 /** 211 /**
212 * The IPv4 server is scheduled to run asap 212 * The IPv4 server is scheduled to run asap
@@ -221,7 +221,7 @@ struct Plugin
221 /** 221 /**
222 * MHD IPv4 task 222 * MHD IPv4 task
223 */ 223 */
224 GNUNET_SCHEDULER_TaskIdentifier server_v6_task; 224 struct GNUNET_SCHEDULER_Task * server_v6_task;
225 225
226 /** 226 /**
227 * The IPv6 server is scheduled to run asap 227 * The IPv6 server is scheduled to run asap
@@ -260,7 +260,7 @@ struct Plugin
260 /** 260 /**
261 * curl perform task 261 * curl perform task
262 */ 262 */
263 GNUNET_SCHEDULER_TaskIdentifier client_perform_task; 263 struct GNUNET_SCHEDULER_Task * client_perform_task;
264 264
265}; 265};
266 266
@@ -426,12 +426,12 @@ struct Session
426 /** 426 /**
427 * Task to wake up client receive handle when receiving is allowed again 427 * Task to wake up client receive handle when receiving is allowed again
428 */ 428 */
429 GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task; 429 struct GNUNET_SCHEDULER_Task * recv_wakeup_task;
430 430
431 /** 431 /**
432 * Session timeout task 432 * Session timeout task
433 */ 433 */
434 GNUNET_SCHEDULER_TaskIdentifier timeout_task; 434 struct GNUNET_SCHEDULER_Task * timeout_task;
435 435
436 /** 436 /**
437 * Is client send handle paused since there are no data to send? 437 * Is client send handle paused since there are no data to send?