diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-01-14 10:44:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-14 10:44:59 +0800 |
commit | 0f10d3f70133bfde1069e148f4457274b891a40c (patch) | |
tree | 68b920bba96ad942775520f96841df08135dbfbf /camel/camel-stream-ssl.h | |
parent | 04b3fe409909822afa86e31c05c32c4e969060e4 (diff) | |
download | gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar.gz gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar.bz2 gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar.lz gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar.xz gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.tar.zst gsoc2013-evolution-0f10d3f70133bfde1069e148f4457274b891a40c.zip |
New stream for handling SSL/TLS connections.
2001-01-13 Jeffrey Stedfast <fejj@ximian.com>
* camel-stream-ssl.[c,h]: New stream for handling SSL/TLS
connections.
svn path=/trunk/; revision=7486
Diffstat (limited to 'camel/camel-stream-ssl.h')
-rw-r--r-- | camel/camel-stream-ssl.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/camel/camel-stream-ssl.h b/camel/camel-stream-ssl.h new file mode 100644 index 0000000000..9bed6fbffc --- /dev/null +++ b/camel/camel-stream-ssl.h @@ -0,0 +1,62 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast <fejj@ximian.com> + * + * Copyright 2001 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifndef CAMEL_STREAM_SSL_H +#define CAMEL_STREAM_SSL_H 1 + + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +#include <camel/camel-stream.h> +#include <openssl/ssl.h> + +#define CAMEL_STREAM_SSL_TYPE (camel_stream_ssl_get_type ()) +#define CAMEL_STREAM_SSL(obj) (CAMEL_CHECK_CAST((obj), CAMEL_STREAM_SSL_TYPE, CamelStreamSSL)) +#define CAMEL_STREAM_SSL_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_STREAM_SSL_TYPE, CamelStreamSSLClass)) +#define CAMEL_IS_STREAM_SSL(o) (CAMEL_CHECK_TYPE((o), CAMEL_STREAM_SSL_TYPE)) + +struct _CamelStreamSSL { + CamelStream parent_object; + + int sockfd; /* file descriptor on the underlying socket */ + SSL *ssl; /* SSL structure */ +}; + +typedef struct { + CamelStreamClass parent_class; +} CamelStreamSSLClass; + +/* Standard Camel function */ +CamelType camel_stream_ssl_get_type (void); + +/* public methods */ +CamelStream *camel_stream_ssl_new (int sockfd); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* CAMEL_STREAM_SSL_H */ |