diff options
author | NIIBE Yutaka <[email protected]> | 2022-10-14 04:52:54 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2022-10-14 04:52:54 +0000 |
commit | c51139f2bc546c6bd4548e24a604f2178a2b8366 (patch) | |
tree | 050da49953c5bbce3b66f478e45ba24b4184a082 /agent/agent.h | |
parent | common: Don't use FD2INT for POSIX-only code. (diff) | |
download | gnupg-c51139f2bc546c6bd4548e24a604f2178a2b8366.tar.gz gnupg-c51139f2bc546c6bd4548e24a604f2178a2b8366.zip |
agent,w32: Support Win32-OpenSSH emulation by gpg-agent.
* agent/agent.h (start_command_handler_ssh_stream): New.
* agent/command-ssh.c (start_command_handler_ssh_stream): New.
* agent/gpg-agent.c (oWin32OpenSSHSupport): New.
(W32_DEFAILT_AGENT_PIPE_NAME): New.
(main): Add oWin32OpenSSHSupport support.
(win32_openssh_thread): New.
(handle_connections): Spawn win32_openssh_thread.
* configure.ac (NEED_GPGRT_VERSION): Require libgpg-error 1.46.
--
GnuPG-bug-id: 3883
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'agent/agent.h')
-rw-r--r-- | agent/agent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/agent/agent.h b/agent/agent.h index 30f30200d..ee5c67568 100644 --- a/agent/agent.h +++ b/agent/agent.h @@ -453,6 +453,7 @@ gpg_error_t ssh_search_control_file (ssh_control_file_t cf, int *r_disabled, int *r_ttl, int *r_confirm); +void start_command_handler_ssh_stream (ctrl_t ctrl, estream_t stream); void start_command_handler_ssh (ctrl_t, gnupg_fd_t); /*-- findkey.c --*/ |