diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-06-15 04:15:04 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-15 04:15:04 +0800 |
commit | 557afe41020d808811375ef02e4c1b822da5515e (patch) | |
tree | 1c448df7f8b120aa7bd7bd6408cc4f5e6cc9e5d4 /camel/camel-cipher-context.h | |
parent | 46139c6d5d307b7391fe40d6ecc9d3ffb3c68c1b (diff) | |
download | gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.gz gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.zst gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.zip |
Updated to use ctx->sign_protocol rather than ctx->protocol.
2002-06-14 Jeffrey Stedfast <fejj@ximian.com>
* camel-multipart-signed.c: Updated to use ctx->sign_protocol
rather than ctx->protocol.
* camel-cipher-context.h: Add an ecnryption protocol member.
* camel-pgp-context.c (camel_pgp_context_init): Set the encryption
protocol.
svn path=/trunk/; revision=17186
Diffstat (limited to 'camel/camel-cipher-context.h')
-rw-r--r-- | camel/camel-cipher-context.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-cipher-context.h b/camel/camel-cipher-context.h index c3a6641967..452c093eef 100644 --- a/camel/camel-cipher-context.h +++ b/camel/camel-cipher-context.h @@ -51,11 +51,12 @@ typedef struct _CamelCipherContext { CamelObject parent_object; struct _CamelCipherContextPrivate *priv; - - const char *protocol; /* this MUST be set by implementors */ CamelSession *session; + /* these MUST be set by implementors */ + const char *sign_protocol; + const char *encrypt_protocol; } CamelCipherContext; typedef struct _CamelCipherContextClass { |