summaryrefslogtreecommitdiff
path: root/trunk/ext/openssl/ossl_ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/openssl/ossl_ssl.h')
-rw-r--r--trunk/ext/openssl/ossl_ssl.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/trunk/ext/openssl/ossl_ssl.h b/trunk/ext/openssl/ossl_ssl.h
deleted file mode 100644
index 487f41216c..0000000000
--- a/trunk/ext/openssl/ossl_ssl.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * $Id$
- * 'OpenSSL for Ruby' project
- * Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
- * All rights reserved.
- */
-/*
- * This program is licenced under the same licence as Ruby.
- * (See the file 'LICENCE'.)
- */
-#if !defined(_OSSL_SSL_H_)
-#define _OSSL_SSL_H_
-
-#define GetSSLSession(obj, sess) do { \
- Data_Get_Struct(obj, SSL_SESSION, sess); \
- if (!sess) { \
- ossl_raise(rb_eRuntimeError, "SSL Session wasn't initialized."); \
- } \
-} while (0)
-
-#define SafeGetSSLSession(obj, sess) do { \
- OSSL_Check_Kind(obj, cSSLSession); \
- GetSSLSession(obj, sess); \
-} while (0)
-
-extern VALUE mSSL;
-extern VALUE eSSLError;
-extern VALUE cSSLSocket;
-extern VALUE cSSLContext;
-extern VALUE cSSLSession;
-
-void Init_ossl_ssl(void);
-void Init_ossl_ssl_session(void);
-
-#endif /* _OSSL_SSL_H_ */
-