aboutsummaryrefslogtreecommitdiffstats
path: root/sm/gpgsm.h
diff options
context:
space:
mode:
Diffstat (limited to 'sm/gpgsm.h')
-rw-r--r--sm/gpgsm.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/sm/gpgsm.h b/sm/gpgsm.h
index 73231671c..acc53b574 100644
--- a/sm/gpgsm.h
+++ b/sm/gpgsm.h
@@ -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;