More coalescing.

This commit is contained in:
Jeroen van Rijn
2023-03-03 17:12:21 +01:00
parent 798932523e
commit 5da5ebff13
5 changed files with 97 additions and 106 deletions
+6
View File
@@ -165,6 +165,12 @@ UDP_Send_Error :: enum c.int {
No_Memory_Available = c.int(os.ENOMEM), // No memory was available to properly manage the send queue.
}
Shutdown_Manner :: enum c.int {
Receive = c.int(os.SHUT_RD),
Send = c.int(os.SHUT_WR),
Both = c.int(os.SHUT_RDWR),
}
Shutdown_Error :: enum c.int {
Aborted = c.int(os.ECONNABORTED),
Reset = c.int(os.ECONNRESET),