aboutsummaryrefslogtreecommitdiffstats
path: root/g10/options.h
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2006-02-22 23:37:23 +0000
committerDavid Shaw <[email protected]>2006-02-22 23:37:23 +0000
commit1ae024ef81d108c68d00a96fca6f808b4a9c454d (patch)
treecf9ea77a36a9d3096eed336ba148a2426559245b /g10/options.h
parent* gpgkeys_hkp.c (get_name): A GETNAME query turns exact=on to cut down on (diff)
downloadgnupg-1ae024ef81d108c68d00a96fca6f808b4a9c454d.tar.gz
gnupg-1ae024ef81d108c68d00a96fca6f808b4a9c454d.zip
* options.h, keyserver-internal.h, keyserver.c (keyserver_import_name),
getkey.c (free_akl, parse_auto_key_locate, get_pubkey_byname): The obvious next step: allow arbitrary keyservers in the auto-key-locate list.
Diffstat (limited to 'g10/options.h')
-rw-r--r--g10/options.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/options.h b/g10/options.h
index d60924187..b1b0cfde9 100644
--- a/g10/options.h
+++ b/g10/options.h
@@ -224,7 +224,8 @@ struct
keyring. */
struct akl
{
- enum {AKL_CERT, AKL_PKA, AKL_LDAP, AKL_KEYSERVER} type;
+ enum {AKL_CERT, AKL_PKA, AKL_LDAP, AKL_KEYSERVER, AKL_SPEC} type;
+ struct keyserver_spec *spec;
struct akl *next;
} *auto_key_locate;