logo

drewdevault.com

[mirror] blog and personal website of Drew DeVault git clone https://hacktivis.me/git/mirror/drewdevault.com.git
commit: 3f119c6cbfae2b14882f15a4a72136928de7118c
parent 67459f0f7a62c88bd84279e3672aad0ef8768e62
Author: Armin Preiml <apreiml@strohwolke.at>
Date:   Thu, 30 Nov 2023 09:15:10 +0100

blog: fix broken link in hare-ssh.md

Diffstat:

Mcontent/blog/hare-ssh.md4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/blog/hare-ssh.md b/content/blog/hare-ssh.md @@ -517,13 +517,13 @@ primitives are implemented for Hare's standard library. ## The SSH agent protocol The agent protocol is also standardized (albeit in draft form), so we refer to -[draft-miller-ssh-agent-01] from this point onwards. It's fairly +[draft-miller-ssh-agent-11] from this point onwards. It's fairly straightforward. The agent communicates over an unspecified protocol (Unix sockets in practice) by sending messages in the SSH wire format, which, again, mainly comes in the form of strings prefixed by their 32-bit length in network order. -[draft-miller-ssh-agent-01]: https://tools.ietf.org/id/draft-miller-ssh-agent-01.html +[draft-miller-ssh-agent-11]: https://tools.ietf.org/id/draft-miller-ssh-agent-11.html The first step for implementing net::ssh::agent starts with adding types for all of the data structures and enums for all of the constants, which you can find in