projects
/
public
/
pyceo-broken.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add mysql database stuff
[public/pyceo-broken.git]
/
src
/
ops.h
1
struct op {
2
char *name;
3
uint32_t id;
4
int local;
5
char *hostname;
6
char *path;
7
struct in_addr addr;
8
struct op *next;
9
char *user;
10
};
11
12
void setup_ops(void);
13
void free_ops(void);
14
struct op *find_op(const char *name);
15
struct op *get_local_op(uint32_t id);