aboutsummaryrefslogtreecommitdiff
path: root/core/net/errors_darwin.odin
Commit message (Collapse)AuthorAgeFilesLines
* net: implement OpenBSD and NetBSD support & add stubs for other targets & ↵Laytan Laats2026-01-111-268/+0
| | | | cleanup
* Change Odin's LICENSE to zlib from BSD 3-clausegingerBill2025-10-281-1/+1
| | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
* Implemented _socket_info_error on peer_endpoint and bound_endpointPePerRoNii2025-06-151-0/+17
|
* net: rework errors to be cross-platformLaytan Laats2025-04-051-160/+200
|
* net: drop core:os dependency for DarwinLaytan Laats2025-03-291-93/+96
|
* Fix a few incorrectly placed build tags.Karl Zylinski2024-09-141-1/+1
|
* Moved all packages in core, base, vendor, tests and examples to use new #+ ↵Karl Zylinski2024-09-141-1/+1
| | | | file tag syntax.
* Add new contribution notes to `core:net`Feoramund2024-08-051-0/+2
|
* [net] Better error code for binding a privileged port without root access on ↵Tetralux2024-02-221-2/+4
| | | | | | | | | | Darwin This condition results in os.EACCESS, which we were translating to Broadcast_Disabled. This was the case because binding to the broadcast address on a UDP port, without setting the BROADCAST flag, also results in this error. Given the fact that reserved ports also produce this error, we now check for this condition in net.bind() and translate it to a custom, clearer error: Privileged_Port_Without_Root.
* [net] Assorted cleanupTetralux2023-08-261-9/+7
| | | | | | | | | | | - Remove some old comments - Fix some doc comments - Improve some doc comments - Unify name of the errors related to UDP packet sizes (i.e: recv buffer too small, and message too big to send)
* Add `set_blocking` for network socketsSokus2023-03-081-0/+6
|
* Add .None to Linux & Darwin, too.Jeroen van Rijn2023-03-041-1/+12
|
* More coalescing.Jeroen van Rijn2023-03-031-0/+6
|
* Coalesce more.Jeroen van Rijn2023-03-031-7/+8
|
* big error cleanupColin Davidson2023-03-021-0/+182