diff options
author | Marvin Borner | 2020-12-03 22:26:46 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-03 22:26:46 +0100 |
commit | cd2dbb2e146562c9e37c614bb09a24f7fbf135e0 (patch) | |
tree | 12605be6b6dfe837f1a2ebefef3cfbc1ed8536e5 /libc | |
parent | d525526f52c76156c4b9ee5ee4f14ed0d06547bc (diff) |
Quite important network stuff
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inc/socket.h | 2 |
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; |