diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2023-03-03 13:00:43 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2023-03-03 13:00:43 +0100 |
| commit | d5ea492ef55c802f9c1f1930cd6413e1c366481f (patch) | |
| tree | eb8fa65ff86e6aef1dd1836e2db928d7bce6a249 /core/net/interface_darwin.odin | |
| parent | 96ac40595281f5112aea41618901e0b70a324100 (diff) | |
Make more private.
Diffstat (limited to 'core/net/interface_darwin.odin')
| -rw-r--r-- | core/net/interface_darwin.odin | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/net/interface_darwin.odin b/core/net/interface_darwin.odin index 9a9bda5d3..a61d63377 100644 --- a/core/net/interface_darwin.odin +++ b/core/net/interface_darwin.odin @@ -1,4 +1,11 @@ +package net //+build darwin + +/* + 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> @@ -9,15 +16,8 @@ Tetralux: Initial implementation Colin Davidson: Linux platform code, OSX platform code, Odin-native DNS resolver Jeroen van Rijn: Cross platform unification, code style, documentation -*/ -/* - 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 -/* TODO: Implement. Can probably use the (current) Linux implementation, which will itself be switched over to talking to the kernel via NETLINK protocol once we have raw sockets. */ |