1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00
2008-06-12  Marcus Brinkmann  <marcus@g10code.de>

	* gpgsm.h (struct keyserver_spec): New struct.
	(opt): Add member keyserver.
	* gpgsm.c (keyserver_list_free, parse_keyserver_line): New functions.
	(main): Implement --keyserver option.
	* call-dirmngr.c (prepare_dirmngr): Send LDAPSERVER commands.

tools/
2008-06-12  Marcus Brinkmann  <marcus@g10code.de>

	* gpgconf-comp.c (gc_options_gpgsm): Add option keyserver.
This commit is contained in:
Marcus Brinkmann 2008-06-12 14:24:46 +00:00
parent 8ed9eb4ac1
commit 04e965c7fc
6 changed files with 181 additions and 33 deletions

View file

@ -35,6 +35,18 @@
#define MAX_DIGEST_LEN 24
struct keyserver_spec
{
struct keyserver_spec *next;
char *host;
int port;
char *user;
char *pass;
char *base;
};
/* A large struct named "opt" to keep global flags. */
struct
{
@ -123,6 +135,8 @@ struct
runtime option in case we want to check
the integrity of the software at
runtime. */
struct keyserver_spec *keyserver;
} opt;