aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-http-stream.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-03-01 05:55:06 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-03-01 05:55:06 +0800
commit32a764399bed6e64b6f03578025bf4255cc63183 (patch)
tree12b73b3e78e9d7f7835fa25907f0d62e9947ace3 /camel/camel-http-stream.c
parent6dafeefcc2561cab454d85074dca43f71ef670b9 (diff)
downloadgsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar.gz
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar.bz2
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar.lz
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar.xz
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.tar.zst
gsoc2013-evolution-32a764399bed6e64b6f03578025bf4255cc63183.zip
Same as IMAP and POP.
2003-02-28 Jeffrey Stedfast <fejj@ximian.com> * providers/smtp/camel-smtp-transport.c (connect_to_server): Same as IMAP and POP. * providers/imap/camel-imap-store.c (connect_to_server): Same as the POP3 code. * providers/pop3/camel-pop3-store.c (connect_to_server): Pass in appropriate flags for camel_tcp_stream_ssl_new*() functions. * camel-tcp-stream-ssl.c (enable_ssl): Not all ssl/tls streams will want to allow each of SSLv2, SSLv3 and TLSv1 so use flags to decide which to enable/disable. (camel_tcp_stream_ssl_new): Now takes a flags argument to mask out which SSL/TLS versions the stream should be compatable with. (camel_tcp_stream_ssl_new_raw): Same. svn path=/trunk/; revision=20111
Diffstat (limited to 'camel/camel-http-stream.c')
-rw-r--r--camel/camel-http-stream.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-http-stream.c b/camel/camel-http-stream.c
index 44c7601e82..5c226cd26c 100644
--- a/camel/camel-http-stream.c
+++ b/camel/camel-http-stream.c
@@ -167,6 +167,7 @@ camel_http_stream_new (CamelHttpMethod method, CamelService *service, CamelURL *
return CAMEL_STREAM (stream);
}
+#define SSL_FLAGS (CAMEL_TCP_STREAM_SSL_ENABLE_SSL2 | CAMEL_TCP_STREAM_SSL_ENABLE_SSL3)
static CamelStream *
http_connect (CamelService *service, CamelURL *url)
@@ -177,7 +178,7 @@ http_connect (CamelService *service, CamelURL *url)
if (!strcasecmp (url->protocol, "https")) {
#ifdef HAVE_SSL
- stream = camel_tcp_stream_ssl_new (service, url->host);
+ stream = camel_tcp_stream_ssl_new (service, url->host, SSL_FLAGS);
#endif
} else {
stream = camel_tcp_stream_raw_new ();