aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc/socket.h')
-rw-r--r--libc/inc/socket.h2
1 files changed, 1 insertions, 1 deletions
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;