mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Add missing ECONNRESET TCP_Send_Error
This was not specifically documented in `send(2)`.
This commit is contained in:
@@ -125,6 +125,7 @@ UDP_Recv_Error :: enum c.int {
|
|||||||
|
|
||||||
TCP_Send_Error :: enum c.int {
|
TCP_Send_Error :: enum c.int {
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Connection_Closed = cast(c.int)freebsd.Errno.ECONNRESET,
|
||||||
Not_Descriptor = cast(c.int)freebsd.Errno.EBADF,
|
Not_Descriptor = cast(c.int)freebsd.Errno.EBADF,
|
||||||
Broadcast_Status_Mismatch = cast(c.int)freebsd.Errno.EACCES,
|
Broadcast_Status_Mismatch = cast(c.int)freebsd.Errno.EACCES,
|
||||||
Not_Connected = cast(c.int)freebsd.Errno.ENOTCONN,
|
Not_Connected = cast(c.int)freebsd.Errno.ENOTCONN,
|
||||||
|
|||||||
Reference in New Issue
Block a user