aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-03-11 12:35:20 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-03-11 12:35:20 +0800
commit6da96db8dd1fc783a025fb1db9ecf46430f744d6 (patch)
tree4705506d13b5c4492c650ab8d49a5a05a7a619b4
parent21a546759f43127acc297d0277e4c6d8b1d67245 (diff)
downloadgsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar.gz
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar.bz2
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar.lz
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar.xz
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.tar.zst
gsoc2013-evolution-6da96db8dd1fc783a025fb1db9ecf46430f744d6.zip
Comment out everything unless HAVE_NSS is defined.
2001-03-09 Jeffrey Stedfast <fejj@ximian.com> * camel-tcp-stream-ssl.h: Comment out everything unless HAVE_NSS is defined. * camel-tcp-stream-ssl.c (stream_read): Don't use errno, use nspr's error code stuff. (stream_write): Same. svn path=/trunk/; revision=8626
-rw-r--r--camel/ChangeLog9
-rw-r--r--camel/camel-tcp-stream-ssl.c34
-rw-r--r--camel/camel-tcp-stream-ssl.h10
3 files changed, 38 insertions, 15 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 247986ca05..d9dec56c7a 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,14 @@
2001-03-09 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-tcp-stream-ssl.h: Comment out everything unless HAVE_NSS
+ is defined.
+
+ * camel-tcp-stream-ssl.c (stream_read): Don't use errno, use
+ nspr's error code stuff.
+ (stream_write): Same.
+
+2001-03-09 Jeffrey Stedfast <fejj@ximian.com>
+
* camel-session.c (camel_session_query_authenticator): Created a
new mode (CAMEL_AUTHENTICATOR_ACCEPT) which is a Yes/No prompt to
the user. This will be needed by the SSL/TLS code to come. Also
diff --git a/camel/camel-tcp-stream-ssl.c b/camel/camel-tcp-stream-ssl.c
index 4249e2ea70..14e26bc706 100644
--- a/camel/camel-tcp-stream-ssl.c
+++ b/camel/camel-tcp-stream-ssl.c
@@ -22,6 +22,8 @@
#include <config.h>
+
+#ifdef HAVE_NSS
#include "camel-tcp-stream-ssl.h"
#include <unistd.h>
#include <sys/types.h>
@@ -29,6 +31,9 @@
#include <fcntl.h>
#include <errno.h>
#include <string.h>
+#include <mozilla/nspr.h>
+#include <nss.h>
+#include <ssl.h>
static CamelTcpStreamClass *parent_class = NULL;
@@ -45,7 +50,6 @@ static int stream_getsockopt (CamelTcpStream *stream, CamelSockOptData *data);
static int stream_setsockopt (CamelTcpStream *stream, const CamelSockOptData *data);
/* callbacks */
-
static SECStatus ssl_bad_cert (void *data, PRFileDesc *fd);
static SECStatus ssl_auth_cert (void *data, PRFileDesc *fd, PRBool checksig, PRBool is_server);
@@ -113,7 +117,6 @@ camel_tcp_stream_ssl_get_type (void)
return type;
}
-
/**
* camel_tcp_stream_ssl_new:
* @session: camel session
@@ -147,7 +150,7 @@ stream_read (CamelStream *stream, char *buffer, size_t n)
do {
nread = PR_Read (tcp_stream_ssl->sockfd, buffer, n);
- } while (nread == -1 && errno == EINTR);
+ } while (nread == -1 && PR_GetError () == PR_PENDING_INTERRUPT_ERROR);
return nread;
}
@@ -156,15 +159,15 @@ static ssize_t
stream_write (CamelStream *stream, const char *buffer, size_t n)
{
CamelTcpStreamSSL *tcp_stream_ssl = CAMEL_TCP_STREAM_SSL (stream);
- ssize_t v, written = 0;
+ ssize_t w, written = 0;
do {
- v = PR_Write (tcp_stream_ssl->sockfd, buffer, n);
- if (v > 0)
- written += v;
- } while (v == -1 && errno == EINTR);
+ w = PR_Write (tcp_stream_ssl->sockfd, buffer, n);
+ if (w > 0)
+ written += w;
+ } while (w == -1 && PR_GetError () == PR_PENDING_INTERRUPT_ERROR);
- if (v == -1)
+ if (w == -1)
return -1;
else
return written;
@@ -198,19 +201,24 @@ static SECStatus
ssl_bad_cert (void *data, PRFileDesc *fd)
{
CamelSession *session;
+ gpointer accept;
char *string;
PRInt32 len;
g_return_val_if_fail (data != NULL, SECFailure);
g_return_val_if_fail (CAMEL_IS_SESSION (data), SECFailure);
+ session = CAMEL_SESSION (data);
+
/* FIXME: International issues here?? */
len = PR_GetErrorTextLen (PR_GetError ());
- string = g_malloc0 (len);
+ string = g_malloc0 (len + 1);
PR_GetErrorText (string);
- session = CAMEL_SESSION (data);
- if (camel_session_query_cert_authenticator (session, string))
+ accept = camel_session_query_authenticator (session, CAMEL_AUTHENTICATOR_ACCEPT,
+ string, FALSE, NULL, NULL, NULL);
+
+ if (GPOINTER_TO_INT (accept))
return SECSuccess;
return SECFailure;
@@ -282,3 +290,5 @@ stream_setsockopt (CamelTcpStream *stream, const CamelSockOptData *data)
return 0;
}
+
+#endif /* HAVE_NSS */
diff --git a/camel/camel-tcp-stream-ssl.h b/camel/camel-tcp-stream-ssl.h
index de6eb1a8bc..ef4e21126c 100644
--- a/camel/camel-tcp-stream-ssl.h
+++ b/camel/camel-tcp-stream-ssl.h
@@ -30,17 +30,19 @@ extern "C" {
#pragma }
#endif /* __cplusplus */
+#include <config.h>
+
+#ifdef HAVE_NSS
#include <camel/camel-tcp-stream.h>
#include <camel/camel-session.h>
-#include <nspr.h>
+#include <mozilla/nspr.h>
#define CAMEL_TCP_STREAM_SSL_TYPE (camel_tcp_stream_ssl_get_type ())
#define CAMEL_TCP_STREAM_SSL(obj) (CAMEL_CHECK_CAST((obj), CAMEL_TCP_STREAM_SSL_TYPE, CamelTcpStreamSSL))
#define CAMEL_TCP_STREAM_SSL_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_TCP_STREAM_SSL_TYPE, CamelTcpStreamSSLClass))
#define CAMEL_IS_TCP_STREAM_SSL(o) (CAMEL_CHECK_TYPE((o), CAMEL_TCP_STREAM_SSL_TYPE))
-struct _CamelTcpStreamSSL
-{
+struct _CamelTcpStreamSSL {
CamelTcpStream parent_object;
PRFileDesc *sockfd;
@@ -62,6 +64,8 @@ CamelType camel_tcp_stream_ssl_get_type (void);
/* public methods */
CamelStream *camel_tcp_stream_ssl_new (CamelSession *session, const char *expected_host);
+#endif /* HAVE_NSS */
+
#ifdef __cplusplus
}
#endif /* __cplusplus */