From 9237c7cabc7921a5a302fafeaee3f8ece4f2344b Mon Sep 17 00:00:00 2001 From: abakum Date: Sun, 10 Dec 2023 16:18:44 +0300 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0280724..3283ef5 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,8 @@ The `ssh-add`, `ssh` commands of `OpenSSH for Windows` implements the same [SSH as Unix/Linux, but over a `Named Pipe` instead of `Unix domain socket`.
The path to this pipe is exposed through the environment variable `SSH_AUTH_SOCK` like `\\.\pipe\somepath`
The `ssh-agent` daemon of `OpenSSH for Windows` used `Named Pipe` `\\.\pipe\openssh-ssh-agent`
-The `sshd` daemon of `OpenSSH for Windows` used `Unix domain socket` like `/tmp/somepath` for some versions of Windows it works +The `sshd` daemon of `OpenSSH for Windows` used `Unix domain socket` like `/tmp/somepath`
+for some versions of Windows it works: look `sc query afunix` Replace the connection to Pageant with one to the socket: ```golang @@ -92,4 +93,4 @@ Replace the connection to Pageant with one to the socket: The standard tests require Pageant to be running and to have at least 1 key loaded. To test connecting to an SSH server, set the `sshtest` build flag and -see the comments in `pageant_ssh_test.go` for how to set up the test. \ No newline at end of file +see the comments in `pageant_ssh_test.go` for how to set up the test.