hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 1246c7255551d45d77cd42bc190928a0b68708dc
parent 121133381fd5a406444782bd171dd5e82989ddd0
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 20 Jun 2021 12:37:47 -0400

net: doc tweaks

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mnet/dns/README | 1+
Mnet/listener.ha | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/dns/README b/net/dns/README @@ -4,6 +4,7 @@ porcelain DNS resolver. TODO: - Finish message decoder/encoder +- DNS over TCP - ASCII considerations - Error handling - Porcelain resolver API diff --git a/net/listener.ha b/net/listener.ha @@ -7,7 +7,7 @@ use io; // oriented protocol), where the implementation which accepts and processes // connections is not aware of the underlying transport. Most users will not // need to use this interface directly, preferring functions such as -// [[tcp::accept]]. +// [[net::tcp::accept]]. export type listener = struct { accept: nullable *fn(l: *listener) (*io::stream | io::error), shutdown: nullable *fn(l: *listener) void,