diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 00:26:44 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 00:30:39 -0400 |
| commit | 8de48d81eac3cd69e5df62867a4ef78a6cfaecd1 (patch) | |
| tree | f164664164c5df87520a26f6c8c925cd6c313b40 | |
| parent | 32fb1fb61cbdc60e3ba1ef52dfc5036d91cf7607 (diff) | |
Use common name for `ENOBUFS`
| -rw-r--r-- | core/net/errors_freebsd.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/net/errors_freebsd.odin b/core/net/errors_freebsd.odin index d359aec13..0c58d4d4b 100644 --- a/core/net/errors_freebsd.odin +++ b/core/net/errors_freebsd.odin @@ -10,7 +10,7 @@ Create_Socket_Error :: enum c.int { Family_Not_Supported_For_This_Socket = cast(c.int)freebsd.Errno.EAFNOSUPPORT, Full_Per_Process_Descriptor_Table = cast(c.int)freebsd.Errno.EMFILE, 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, Protocol_Unsupported_In_Family = cast(c.int)freebsd.Errno.EPROTONOSUPPORT, Socket_Type_Unsupported_By_Protocol = cast(c.int)freebsd.Errno.EPROTOTYPE, |