From fbd945a03f2d706bb4d62aab6a607c1694d6d77a Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 23 Sep 2024 12:35:42 -0600 Subject: wip 9p reorg --- net9p.c | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 net9p.c (limited to 'net9p.c') diff --git a/net9p.c b/net9p.c deleted file mode 100644 index f7c8195..0000000 --- a/net9p.c +++ /dev/null @@ -1,44 +0,0 @@ -#include "net9p.h" -#include "net9p_defs.h" -#include "netio.h" - -#define MAX_MSG_SIZE 1024 - -int read_msg(int conn, uint16_t *out_tag, void **out_body) { - uint8_t buf[MAX_MSG_SIZE]; - size_t todo = 7, done = 0; - - while (done < todo) { - ssize_t r = netio_read(conn, buf, 7); - if (r < 0) - return r; - done += r; - } - todo = docode_u32le(buf); - if (todo < 7) - return -EINVAL; - while (done < todo) { - ssize_t r = netio_read(conn, buf, 7); - if (r < 0) - return r; - done += r; - } - return v9fs_unmarshal_msg(buf, out_tag, out_body); -} - -void net9p_cr(void *_arg) { - int sock = *((int *)_arg); - cr_begin(); - - for (;;) { - int conn = netio_accept(sock); - if (conn < 0) { - error(0, -conn, "netio_accept"); - continue; - } - - - } - - cr_end(); -} -- cgit v1.2.3-2-g168b