aboutsummaryrefslogtreecommitdiff
path: root/core/net/errors_freebsd.odin
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-05 02:30:12 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-05 03:05:49 -0400
commitfe754af13dcc6eb69ec5960b48c9de44a2eb3101 (patch)
treeb4957d9aefd88e3f70686f24c42436192a4ac749 /core/net/errors_freebsd.odin
parent61e770d94398b65c3fe4f47898e248a691181dfd (diff)
Add new contribution notes to `core:net`
Diffstat (limited to 'core/net/errors_freebsd.odin')
-rw-r--r--core/net/errors_freebsd.odin19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/net/errors_freebsd.odin b/core/net/errors_freebsd.odin
index fc8287834..8257dfa5d 100644
--- a/core/net/errors_freebsd.odin
+++ b/core/net/errors_freebsd.odin
@@ -1,6 +1,25 @@
//+build freebsd
package net
+/*
+ Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
+ For other protocols and their features, see subdirectories of this package.
+*/
+
+/*
+ Copyright 2022 Tetralux <tetraluxonpc@gmail.com>
+ Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
+ Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
+ Copyright 2024 Feoramund <rune@swevencraft.org>.
+ Made available under Odin's BSD-3 license.
+
+ List of contributors:
+ Tetralux: Initial implementation
+ Colin Davidson: Linux platform code, OSX platform code, Odin-native DNS resolver
+ Jeroen van Rijn: Cross platform unification, code style, documentation
+ Feoramund: FreeBSD platform code
+*/
+
import "core:c"
import "core:sys/freebsd"