diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-07 16:47:42 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-07 16:47:42 -0600 |
commit | b1b07aea8841d78e935e7de13d693a267709e711 (patch) | |
tree | a189167728221e0eb0e4c5dc96ea250e013691e7 /cmd/srv9p/static.h | |
parent | 28486154a1b3763992548bc085070f3f09e4bf09 (diff) |
wip
Diffstat (limited to 'cmd/srv9p/static.h')
-rw-r--r-- | cmd/srv9p/static.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cmd/srv9p/static.h b/cmd/srv9p/static.h new file mode 100644 index 0000000..90bad4b --- /dev/null +++ b/cmd/srv9p/static.h @@ -0,0 +1,27 @@ +#ifndef _STATIC_H_ +#define _STATIC_H_ + +#include <lib9p/srv.h> + +struct static_dir_data { + char *u_name; + uint32_t u_num; + char *g_name; + uint32_t g_num; + char *m_name; + uint32_t m_num; + + uint64_t pathnum; + char *name; + lib9p_dm_t perm; + uint32_t atime, mtime; + + /* NULL-terminated */ + struct lib9p_srv_file *members[]; +}; + +extern struct lib9p_srv_file_vtable static_dir_vtable; + +//extern struct lib9p_srv_io_dir_vtable static_dir_io_vtable; + +#endif /* _STATIC_H_ */ |