diff options
-rw-r--r-- | camel/ChangeLog | 7 | ||||
-rw-r--r-- | camel/Makefile.am | 2 | ||||
-rw-r--r-- | camel/camel-remote-store.h | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index dcf2d2117e..9dbebe0469 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,12 @@ 2001-03-13 Jeffrey Stedfast <fejj@ximian.com> + * Makefile.am: Added camel-tcp-stream-ssl to the build. + + * camel-remote-store.h: Add a use_ssl member to the + CamelRemoteStore object. + +2001-03-13 Jeffrey Stedfast <fejj@ximian.com> + * camel-tcp-stream-ssl.c (camel_tcp_stream_ssl_get_type): Oops. Make this a subclass of CamelTcpStream, not CamelStream. diff --git a/camel/Makefile.am b/camel/Makefile.am index 9b3390d53d..857b8df246 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -69,6 +69,7 @@ libcamel_la_SOURCES = \ camel-stream-null.c \ camel-stream.c \ camel-tcp-stream-raw.c \ + camel-tcp-stream-ssl.c \ camel-tcp-stream.c \ camel-transport.c \ camel-uid-cache.c \ @@ -135,6 +136,7 @@ libcamelinclude_HEADERS = \ camel-stream-null.h \ camel-stream.h \ camel-tcp-stream-raw.h \ + camel-tcp-stream-ssl.h \ camel-tcp-stream.h \ camel-transport.h \ camel-types.h \ diff --git a/camel/camel-remote-store.h b/camel/camel-remote-store.h index 51322b6886..f894d51572 100644 --- a/camel/camel-remote-store.h +++ b/camel/camel-remote-store.h @@ -44,6 +44,7 @@ typedef struct { CamelStream *istream, *ostream; guint timeout_id, default_port; + gboolean use_ssl; } CamelRemoteStore; |