nut/clients/upssched.h

15 lines
260 B
C
Raw Normal View History

2010-03-25 23:20:59 +00:00
/* upssched.h - supporting structures */
#include <parseconf.h>
#define SERIALIZE_INIT 1
#define SERIALIZE_SET 2
#define SERIALIZE_WAIT 3
/* track client connections */
2011-01-26 09:35:08 +00:00
typedef struct conn_s {
2010-03-25 23:20:59 +00:00
int fd;
PCONF_CTX_t ctx;
2011-01-26 09:35:08 +00:00
struct conn_s *next;
} conn_t;