lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
363 B
13 lines
363 B
#ifndef _JOB_LIST_H_ |
|
#define _JOB_LIST_H_ |
|
|
|
#include "base.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
|
|
|