diff options
author | Moritz Schulte <[email protected]> | 2005-01-26 22:20:21 +0000 |
---|---|---|
committer | Moritz Schulte <[email protected]> | 2005-01-26 22:20:21 +0000 |
commit | a5d3f8a6e78844505d9b59f5c41d71d266e4581b (patch) | |
tree | e4e1ac2ca36618af4486c6f4ba484f4a6af5cc35 /agent/Makefile.am | |
parent | post release updates (diff) | |
download | gnupg-a5d3f8a6e78844505d9b59f5c41d71d266e4581b.tar.gz gnupg-a5d3f8a6e78844505d9b59f5c41d71d266e4581b.zip |
2005-01-26 Moritz Schulte <[email protected]>
* command-ssh.c: New file.
* Makefile.am (gpg_agent_SOURCES): New source file: command-ssh.c.
* findkey.c (modify_description): New function.
(agent_key_from_file): Support comment field in key s-expressions.
* gpg-agent.c (enum cmd_and_opt_values): New item: oSSHSupport.
(opts) New entry for oSSHSupport.
New variable: socket_name_ssh.
(cleanup_do): New function based on cleanup().
(cleanup): Use cleanup_do() for socket_name and socket_name_ssh.
(main): New switch case for oSSHSupport.
(main): Move socket name creation code to ...
(create_socket_name): ... this new function.
(main): Use create_socket_name() for creating socket names for
socket_name and for socket_name_ssh in case ssh support is
enabled.
Move socket creation code to ...
(create_server_socket): ... this new function.
(main): Use create_server_socket() for creating sockets.
In case standard_socket is set, do not only store a socket name in
socket_name, but also in socket_name_ssh.
Generate additional environment info strings for ssh support.
Pass additional ssh socket argument to handle_connections.
(start_connection_thread_ssh): New function.
(handle_connections): Use select to multiplex between gpg-agent
and ssh-agent protocol.
* agent.h (struct opt): New member: ssh_support.
Declare function: start_command_handler_ssh.
Diffstat (limited to 'agent/Makefile.am')
-rw-r--r-- | agent/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/Makefile.am b/agent/Makefile.am index 4cedbe74e..df8ec322c 100644 --- a/agent/Makefile.am +++ b/agent/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc. # # This file is part of GnuPG. # @@ -29,7 +29,7 @@ AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(PTH_CFLAGS) gpg_agent_SOURCES = \ gpg-agent.c agent.h \ - command.c \ + command.c command-ssh.c \ query.c \ cache.c \ trans.c \ |