summaryrefslogtreecommitdiff
path: root/cmd/srv9p/static.h
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-12 17:53:05 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-12 17:53:05 -0600
commiteb4e0bc7dd140b356a62071bf8e0427fc0cee816 (patch)
treec71d7daf1dfccf7e261c2fe22d7d5a0bd55bf34d /cmd/srv9p/static.h
parent7508de2e4ec10baf46c7cde6e7774051ac19e95a (diff)
get read working correctly
Diffstat (limited to 'cmd/srv9p/static.h')
-rw-r--r--cmd/srv9p/static.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/cmd/srv9p/static.h b/cmd/srv9p/static.h
deleted file mode 100644
index afb5a3f..0000000
--- a/cmd/srv9p/static.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _STATIC_H_
-#define _STATIC_H_
-
-#include <lib9p/srv.h>
-
-extern struct lib9p_srv_file_vtable static_dir_vtable;
-
-struct static_dir {
- struct lib9p_srv_file header;
-
- 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_io_dir_vtable static_dir_io_vtable;
-
-#endif /* _STATIC_H_ */