summaryrefslogtreecommitdiff
path: root/cmd/srv9p/gnet.h
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-15 21:03:18 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-15 21:03:18 -0600
commit32caa64b67b6f6a4c3c8a0b270a8b12b2f05389b (patch)
treea833402307974ee7d874dcd768a46b9cde0f81f8 /cmd/srv9p/gnet.h
parent3dcbd43ecd77c28762b0595475893ff052c0444a (diff)
wip
Diffstat (limited to 'cmd/srv9p/gnet.h')
-rw-r--r--cmd/srv9p/gnet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/srv9p/gnet.h b/cmd/srv9p/gnet.h
index a724128..549dd7b 100644
--- a/cmd/srv9p/gnet.h
+++ b/cmd/srv9p/gnet.h
@@ -11,7 +11,7 @@
#include <libnet/libnet.h>
-struct gnet_conn {
+struct _gnet_conn {
struct libnet_conn_vtable *vtable;
int fd;
@@ -21,7 +21,7 @@ struct gnet_listener {
struct libnet_listener_vtable *vtable;
int fd;
- struct gnet_conn active_conn;
+ struct _gnet_conn active_conn;
};
void gnet_listener_init(struct gnet_listener *self, uint16_t port);