aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-07-31 09:03:10 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-07-31 09:03:10 +0800
commit8137a35173541e4a5a3ed180b6493f2166d08ac1 (patch)
treed4d0070718afbcc8375585429f55c08a7160017e /camel/ChangeLog
parent61d063ada03ee98f167197b4d067c568232ace24 (diff)
downloadgsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar.gz
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar.bz2
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar.lz
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar.xz
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.tar.zst
gsoc2013-evolution-8137a35173541e4a5a3ed180b6493f2166d08ac1.zip
Update the comment.
2002-07-30 Jeffrey Stedfast <fejj@ximian.com> * camel-tcp-stream.c (camel_tcp_address_new): Update the comment. * camel-tcp-stream-raw.c (socket_connect): If building with IPv6 support and the address is an IPv6 address, connect using a sockaddr_in6 otherwise use the standard IPv4 sockaddr_in structure. (stream_get_local_address): Fix to work with IPv6 addresses. (stream_get_remote_address): Same. * camel-tcp-stream-openssl.c (socket_connect): Same as above. (stream_get_local_address): Fix to work with IPv6 addresses. (stream_get_remote_address): Same. * camel-tcp-stream-ssl.c (stream_connect): If building with IPv6 support and the address is an IPv6 address, initialise the PRNetAddr accordingly. (stream_get_local_address): Fix to work with IPv6 addresses. (stream_get_remote_address): Same. svn path=/trunk/; revision=17651
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 4e91482c38..6063f1a344 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,26 @@
2002-07-30 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-tcp-stream.c (camel_tcp_address_new): Update the comment.
+
+ * camel-tcp-stream-raw.c (socket_connect): If building with IPv6
+ support and the address is an IPv6 address, connect using a
+ sockaddr_in6 otherwise use the standard IPv4 sockaddr_in
+ structure.
+ (stream_get_local_address): Fix to work with IPv6 addresses.
+ (stream_get_remote_address): Same.
+
+ * camel-tcp-stream-openssl.c (socket_connect): Same as above.
+ (stream_get_local_address): Fix to work with IPv6 addresses.
+ (stream_get_remote_address): Same.
+
+ * camel-tcp-stream-ssl.c (stream_connect): If building with IPv6
+ support and the address is an IPv6 address, initialise the
+ PRNetAddr accordingly.
+ (stream_get_local_address): Fix to work with IPv6 addresses.
+ (stream_get_remote_address): Same.
+
+2002-07-30 Jeffrey Stedfast <fejj@ximian.com>
+
* camel-tcp-stream-openssl.c (ssl_verify): X509_digest() needs a
pointer to an int len. Also fixed some other compiler errors.