mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Use common name for ENOBUFS
This commit is contained in:
@@ -10,7 +10,7 @@ Create_Socket_Error :: enum c.int {
|
|||||||
Family_Not_Supported_For_This_Socket = cast(c.int)freebsd.Errno.EAFNOSUPPORT,
|
Family_Not_Supported_For_This_Socket = cast(c.int)freebsd.Errno.EAFNOSUPPORT,
|
||||||
Full_Per_Process_Descriptor_Table = cast(c.int)freebsd.Errno.EMFILE,
|
Full_Per_Process_Descriptor_Table = cast(c.int)freebsd.Errno.EMFILE,
|
||||||
Full_System_File_Table = cast(c.int)freebsd.Errno.ENFILE,
|
Full_System_File_Table = cast(c.int)freebsd.Errno.ENFILE,
|
||||||
Insufficient_Buffer_Space = cast(c.int)freebsd.Errno.ENOBUFS,
|
No_Buffer_Space_Available = cast(c.int)freebsd.Errno.ENOBUFS,
|
||||||
Insufficient_Permission = cast(c.int)freebsd.Errno.EPERM,
|
Insufficient_Permission = cast(c.int)freebsd.Errno.EPERM,
|
||||||
Protocol_Unsupported_In_Family = cast(c.int)freebsd.Errno.EPROTONOSUPPORT,
|
Protocol_Unsupported_In_Family = cast(c.int)freebsd.Errno.EPROTONOSUPPORT,
|
||||||
Socket_Type_Unsupported_By_Protocol = cast(c.int)freebsd.Errno.EPROTOTYPE,
|
Socket_Type_Unsupported_By_Protocol = cast(c.int)freebsd.Errno.EPROTOTYPE,
|
||||||
|
|||||||
Reference in New Issue
Block a user