diff options
author | nobody <nobody@localhost> | 2001-03-02 09:33:29 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-03-02 09:33:29 +0800 |
commit | c8a180bc595585c7efad6a608e01cd25d68412e0 (patch) | |
tree | cda39502324bf50b451e5c7f58e5dee7c7476bad /camel/camel-stream-ssl.h | |
parent | 50ef074887b43f43dad3edb120d9abf30092c681 (diff) | |
download | gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar.gz gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar.bz2 gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar.lz gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar.xz gsoc2013-evolution-GIDE_BEFORE_BONOBO.tar.zst gsoc2013-evolution-GIDE_BEFORE_BONOBO.zip |
This commit was manufactured by cvs2svn to create tagGIDE_BEFORE_BONOBO
'GIDE_BEFORE_BONOBO'.
svn path=/tags/GIDE_BEFORE_BONOBO/; revision=8485
Diffstat (limited to 'camel/camel-stream-ssl.h')
-rw-r--r-- | camel/camel-stream-ssl.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/camel/camel-stream-ssl.h b/camel/camel-stream-ssl.h deleted file mode 100644 index 9bed6fbffc..0000000000 --- a/camel/camel-stream-ssl.h +++ /dev/null @@ -1,62 +0,0 @@ -/* -*- 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 */ |