From 0f10d3f70133bfde1069e148f4457274b891a40c Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sun, 14 Jan 2001 02:44:59 +0000 Subject: New stream for handling SSL/TLS connections. 2001-01-13 Jeffrey Stedfast * camel-stream-ssl.[c,h]: New stream for handling SSL/TLS connections. svn path=/trunk/; revision=7486 --- camel/camel-stream-ssl.h | 62 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 camel/camel-stream-ssl.h (limited to 'camel/camel-stream-ssl.h') 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 + * + * 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 +#include + +#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 */ -- cgit v1.2.3