summaryrefslogtreecommitdiff
path: root/net9p.h
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-17 09:38:06 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-17 12:38:18 -0600
commit47b2f4c4982fb5f063e9e83c524b2e63abaa58c4 (patch)
treef3f1727a36b79927e105415d650c53532489ba07 /net9p.h
parenta3c2e3bb9092f1d17671c22fd7bf5c0de9b61c3a (diff)
wip
Diffstat (limited to 'net9p.h')
-rw-r--r--net9p.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/net9p.h b/net9p.h
new file mode 100644
index 0000000..c7b0d65
--- /dev/null
+++ b/net9p.h
@@ -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_ */