aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/socket.h
diff options
context:
space:
mode:
authorMarvin Borner2020-12-03 22:26:46 +0100
committerMarvin Borner2020-12-03 22:26:46 +0100
commitcd2dbb2e146562c9e37c614bb09a24f7fbf135e0 (patch)
tree12605be6b6dfe837f1a2ebefef3cfbc1ed8536e5 /libc/inc/socket.h
parentd525526f52c76156c4b9ee5ee4f14ed0d06547bc (diff)
Quite important network stuff
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;