pyceo/src/ops.h

15 lines
265 B
C
Raw Normal View History

2009-01-31 01:40:18 -05:00
struct op {
char *name;
uint32_t id;
int local;
char *hostname;
char *path;
struct in_addr addr;
struct op *next;
};
void setup_ops(void);
void free_ops(void);
2009-01-31 01:40:18 -05:00
struct op *find_op(const char *name);
struct op *get_local_op(uint32_t id);