aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/microhttpd/daemon.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 5a72531f..086453d8 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -88,6 +88,19 @@
88 88
89/* Forward declarations. */ 89/* Forward declarations. */
90 90
91
92/**
93 * Global initialisation function.
94 */
95void
96MHD_init (void);
97
98/**
99 * Global deinitialisation function.
100 */
101void
102MHD_fini (void);
103
91/** 104/**
92 * Close all connections for the daemon. 105 * Close all connections for the daemon.
93 * Must only be called when MHD_Daemon::shutdown was set to true. 106 * Must only be called when MHD_Daemon::shutdown was set to true.
@@ -116,12 +129,6 @@ MHD_epoll (struct MHD_Daemon *daemon,
116 129
117#endif /* EPOLL_SUPPORT */ 130#endif /* EPOLL_SUPPORT */
118 131
119/**
120 * Globally initialise library.
121 */
122void
123MHD_init (void);
124
125 132
126#if defined(MHD_WINSOCK_SOCKETS) 133#if defined(MHD_WINSOCK_SOCKETS)
127/** 134/**