aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-03-11 10:33:27 +0800
committerDan Winship <danw@src.gnome.org>2002-03-11 10:33:27 +0800
commit6024691d3c352e0c845672667cd2ef6a9e3bfdad (patch)
tree608115b1b394f0f64b7de202b599f6df4ccdb85c /camel/ChangeLog
parentb1b809031f5a11223d97ee02d21fb6bb3693a367 (diff)
downloadgsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar.gz
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar.bz2
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar.lz
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar.xz
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.tar.zst
gsoc2013-evolution-6024691d3c352e0c845672667cd2ef6a9e3bfdad.zip
Rename the OpenSSL implementation of things to match the NSS
implementation so that callers don't need to care which one is being used. * camel-tcp-stream-openssl.c: Implement CamelTcpStreamSSL, not CamelTcpStreamOpenSSL. Rename methods as well. Replace the camel-tcp-stream-openssl.h include with camel-tcp-stream-ssl.h. * camel-tcp-stream-openssl.h: Gone. * camel-tcp-stream-ssl.c: Add a note explaining that this implementation is only used for NSS, and that OpenSSL's implementation is in another file. (Should probably do some CVS renaming magic at some point.) * camel-http-stream.c (http_connect): Remove OpenSSL refs; the previously-NSS-specific code works for both now. * camel-remote-store.c: Likewise. * providers/smtp/camel-smtp-transport.c: Likewise. * providers/pop3/camel-pop3-store.c: Likewise. * Makefile.am (libcamelinclude_HEADERS): Remove camel-tcp-stream-openssl.h svn path=/trunk/; revision=16093
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog29
1 files changed, 29 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 04ac36003d..c842dd59c7 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,34 @@
2002-03-10 Dan Winship <danw@ximian.com>
+ Rename the OpenSSL implementation of things to match the NSS
+ implementation so that callers don't need to care which one is
+ being used.
+
+ * camel-tcp-stream-openssl.c: Implement CamelTcpStreamSSL, not
+ CamelTcpStreamOpenSSL. Rename methods as well. Replace the
+ camel-tcp-stream-openssl.h include with camel-tcp-stream-ssl.h.
+
+ * camel-tcp-stream-openssl.h: Gone.
+
+ * camel-tcp-stream-ssl.c: Add a note explaining that this
+ implementation is only used for NSS, and that OpenSSL's
+ implementation is in another file. (Should probably do some CVS
+ renaming magic at some point.)
+
+ * camel-http-stream.c (http_connect): Remove OpenSSL refs; the
+ previously-NSS-specific code works for both now.
+
+ * camel-remote-store.c: Likewise.
+
+ * providers/smtp/camel-smtp-transport.c: Likewise.
+
+ * providers/pop3/camel-pop3-store.c: Likewise.
+
+ * Makefile.am (libcamelinclude_HEADERS): Remove
+ camel-tcp-stream-openssl.h
+
+2002-03-10 Dan Winship <danw@ximian.com>
+
* camel-tcp-stream.c (camel_tcp_stream_get_socket): Remove this:
it couldn't be generically used, because different subclasses
returned entirely different types of data.