You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd1.4/src/joblist.h

14 lines
363 B
C

#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