diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-23 09:24:31 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-25 19:03:06 -0600 |
commit | 467c9e2bdbe1192635c786b4ae2120e2ffc7fb63 (patch) | |
tree | 19150835e332d47133c7e372bcb8513c6e9f76a6 /lib9p/srv.c | |
parent | 654b1940705197f22ffeebd73e62cea2282bdbda (diff) |
libhw/generic/net.h: Tidy up the interfaces
Diffstat (limited to 'lib9p/srv.c')
-rw-r--r-- | lib9p/srv.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib9p/srv.c b/lib9p/srv.c index c624fa8..580c5f5 100644 --- a/lib9p/srv.c +++ b/lib9p/srv.c @@ -293,12 +293,14 @@ static void handle_message(struct _lib9p_srv_req *ctx); _lib9p_srv_reqch_send_req(&srv->_reqch, &req); } close: - LO_CALL(conn.fd, close, true, sess.reqs.len == 0); - if (sess.reqs.len) { + if (sess.reqs.len == 0) + io_close(conn.fd); + else { + io_close_read(conn.fd); sess.closing = true; cr_pause_and_yield(); assert(sess.reqs.len == 0); - LO_CALL(conn.fd, close, true, true); + io_close_write(conn.fd); } } } |