aboutsummaryrefslogtreecommitdiff
path: root/core/net/doc.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 20:11:06 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 20:11:06 +0200
commit8a35acd50609e3ac1463bffebc79955b7ea619b8 (patch)
tree1e78efe98d6559557b0a8f3fbf6253349284813f /core/net/doc.odin
parentc4c2431997d1854fe9d746e04a240239a88aab6d (diff)
More package lines.
Diffstat (limited to 'core/net/doc.odin')
-rw-r--r--core/net/doc.odin31
1 files changed, 15 insertions, 16 deletions
diff --git a/core/net/doc.odin b/core/net/doc.odin
index ed720c0ae..1d6ad776a 100644
--- a/core/net/doc.odin
+++ b/core/net/doc.odin
@@ -1,20 +1,5 @@
/*
- 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
-*/
-
-/*
-Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
-For other protocols and their features, see subdirectories of this package.
+package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
Features:
- Supports Windows, Linux and OSX.
@@ -44,3 +29,17 @@ or worse. This means that should you replace the temp allocator with an insuffic
we'll do our best to loudly complain the first time you try it.
*/
package net
+
+/*
+ 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
+*/ \ No newline at end of file