From cd2dbb2e146562c9e37c614bb09a24f7fbf135e0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 3 Dec 2020 22:26:46 +0100 Subject: Quite important network stuff --- libc/inc/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc') diff --git a/libc/inc/socket.h b/libc/inc/socket.h index e5e23ad..18bc316 100644 --- a/libc/inc/socket.h +++ b/libc/inc/socket.h @@ -8,7 +8,7 @@ // 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 }; +enum socket_state { S_CONNECTING, S_CONNECTED, S_OPEN, S_CLOSING, S_CLOSED, S_FAILED }; struct tcp_socket { u32 seq_no; -- cgit v1.2.3