aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_http_server.c')
-rw-r--r--src/transport/plugin_transport_http_server.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_http_server.c b/src/transport/plugin_transport_http_server.c
index 2c180c5ff..24c27aced 100644
--- a/src/transport/plugin_transport_http_server.c
+++ b/src/transport/plugin_transport_http_server.c
@@ -47,10 +47,12 @@ struct ServerConnection
47 * starts the task waiting for them. 47 * starts the task waiting for them.
48 * @param plugin plugin 48 * @param plugin plugin
49 * @param daemon_handle the MHD daemon handle 49 * @param daemon_handle the MHD daemon handle
50 * @param now schedule now or with MHD delay
50 * @return gnunet task identifier 51 * @return gnunet task identifier
51 */ 52 */
52static GNUNET_SCHEDULER_TaskIdentifier 53static GNUNET_SCHEDULER_TaskIdentifier
53server_schedule (struct Plugin *plugin, struct MHD_Daemon *daemon_handle, 54server_schedule (struct Plugin *plugin,
55 struct MHD_Daemon *daemon_handle,
54 int now); 56 int now);
55 57
56static void 58static void
@@ -238,6 +240,7 @@ server_load_certificate (struct Plugin *plugin)
238/** 240/**
239 * Reschedule the execution of both IPv4 and IPv6 server 241 * Reschedule the execution of both IPv4 and IPv6 server
240 * @param plugin the plugin 242 * @param plugin the plugin
243 * @param server which server to schedule v4 or v6?
241 * @param now GNUNET_YES to schedule execution immediately, GNUNET_NO to wait 244 * @param now GNUNET_YES to schedule execution immediately, GNUNET_NO to wait
242 * until timeout 245 * until timeout
243 */ 246 */