summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/joblist.h
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/src/joblist.h')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/src/joblist.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/src/joblist.h b/data/lighttpd/lighttpd-1.4.53/src/joblist.h
new file mode 100644
index 000000000..78c40e53b
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/src/joblist.h
@@ -0,0 +1,14 @@
+#ifndef _JOB_LIST_H_
+#define _JOB_LIST_H_
+#include "first.h"
+
+#include "base_decls.h"
+
+int joblist_append(server *srv, connection *con);
+void joblist_free(server *srv, connections *joblist);
+
+int fdwaitqueue_append(server *srv, connection *con);
+void fdwaitqueue_free(server *srv, connections *fdwaitqueue);
+connection *fdwaitqueue_unshift(server *srv, connections *fdwaitqueue);
+
+#endif