14 lines
239 B
C
14 lines
239 B
C
/* upssched.h - supporting structures */
|
|
|
|
#include <parseconf.h>
|
|
|
|
#define SERIALIZE_INIT 1
|
|
#define SERIALIZE_SET 2
|
|
#define SERIALIZE_WAIT 3
|
|
|
|
/* track client connections */
|
|
struct conn_t {
|
|
int fd;
|
|
PCONF_CTX_t ctx;
|
|
void *next;
|
|
};
|