2009-11-10 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Tue, 10 Nov 2009 14:54:39 +0000 (14:54 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Tue, 10 Nov 2009 14:54:39 +0000 (14:54 +0000)
* gpgme.c (gpgme_new): Set default sub protocol.
* gpgme-tool.c: Implement get sub protocol.

src/ChangeLog
src/gpgme-tool.c
src/gpgme.c

index 91ea9da0297afc953efcddd5c0981635a8ce6f4c..2443c2f1dbc0a03945320e6c6f1a2d1746d17ba3 100644 (file)
@@ -1,5 +1,8 @@
 2009-11-10  Marcus Brinkmann  <marcus@g10code.de>
 
+       * gpgme.c (gpgme_new): Set default sub protocol.
+       * gpgme-tool.c: Implement get sub protocol.
+
        * gpgme.h.in (gpgme_get_sub_protocol): Add prototype.
        * gpgme.def, libgpgme.vers: Add gpgme_get_sub_protocol.
        * context.h (struct gpgme_context): New member sub_protocol.
index 0283ffd2c8ecdbd21733a506625c32234cf6009f..ccb2ae48f6a7dfeef5df5dec110380f4aa6ce624 100644 (file)
@@ -798,6 +798,18 @@ gt_set_protocol (gpgme_tool_t gt, gpgme_protocol_t proto)
 }
 
 
+gpg_error_t
+gt_get_protocol (gpgme_tool_t gt)
+{
+  gpgme_protocol_t proto = gpgme_get_protocol (gt->ctx);
+
+  gt_write_status (gt, STATUS_PROTOCOL, gpgme_get_protocol_name (proto),
+                  NULL);
+
+  return 0;
+}
+
+
 gpg_error_t
 gt_set_sub_protocol (gpgme_tool_t gt, gpgme_protocol_t proto)
 {
@@ -806,9 +818,9 @@ gt_set_sub_protocol (gpgme_tool_t gt, gpgme_protocol_t proto)
 
 
 gpg_error_t
-gt_get_protocol (gpgme_tool_t gt)
+gt_get_sub_protocol (gpgme_tool_t gt)
 {
-  gpgme_protocol_t proto = gpgme_get_protocol (gt->ctx);
+  gpgme_protocol_t proto = gpgme_get_sub_protocol (gt->ctx);
 
   gt_write_status (gt, STATUS_PROTOCOL, gpgme_get_protocol_name (proto),
                   NULL);
@@ -1268,8 +1280,8 @@ cmd_sub_protocol (assuan_context_t ctx, char *line)
   struct server *server = assuan_get_pointer (ctx);
   if (line && *line)
     return gt_set_sub_protocol (server->gt, gt_protocol_from_name (line));
-  /* FIXME.  */
-  return 0;
+  else
+    return gt_get_sub_protocol (server->gt);
 }
 
 
index 7c52385192f59723e9785d0247458f6fd510b777..2d709e40e2d03e584abceddbe1a519f5c7051a63 100644 (file)
@@ -77,6 +77,7 @@ gpgme_new (gpgme_ctx_t *r_ctx)
   ctx->keylist_mode = GPGME_KEYLIST_MODE_LOCAL;
   ctx->include_certs = GPGME_INCLUDE_CERTS_DEFAULT;
   ctx->protocol = GPGME_PROTOCOL_OpenPGP;
+  ctx->sub_protocol = GPGME_PROTOCOL_DEFAULT;
   _gpgme_fd_table_init (&ctx->fdt);
 
   LOCK (def_lc_lock);