diff options
Diffstat (limited to 'kernel/inc/net.h')
-rw-r--r-- | kernel/inc/net.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/inc/net.h b/kernel/inc/net.h index fe3270b..f9986e0 100644 --- a/kernel/inc/net.h +++ b/kernel/inc/net.h @@ -161,12 +161,13 @@ struct tcp_socket { // TODO: Use actual socket types (stream etc) enum socket_type { S_TCP, S_UDP }; +enum socket_state { S_CONNECTING, S_CONNECTED, S_OPEN, S_CLOSED, S_FAILED }; struct socket { u32 ip_addr; u32 dst_port; u32 src_port; - u32 status; + enum socket_state state; enum socket_type type; u32 bytes_available; u32 bytes_read; |