diff options
Diffstat (limited to 'net9p.h')
-rw-r--r-- | net9p.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#ifndef _NET9P_H_ +#define _NET9P_H_ + +typedef struct { + int fd; +} net9p_listen_stack_t; + +typedef struct { + int fd; +} net9p_worker_stack_t; + +void net9p_listen_cr(void *); +void net9p_worker_cr(void *); + +#endif /* _NET9P_H_ */ |