mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ebcefd795b
* ext/openssl/ossl_ssl.c (mSSLExtConfig): make static (eSSLError): ditto (ID_callback_state): ditto (ossl_ssl_ex_vcb_idx): ditto (ossl_ssl_ex_store_p): ditto (ossl_ssl_ex_ptr_idx): ditto * ext/openssl/ossl_ssl.h: remove extern declarations for mSSLExtConfig and eSSLError git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
38 lines
977 B
C
38 lines
977 B
C
/*
|
|
* 'OpenSSL for Ruby' project
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licensed under the same licence as Ruby.
|
|
* (See the file 'LICENCE'.)
|
|
*/
|
|
#if !defined(_OSSL_SSL_H_)
|
|
#define _OSSL_SSL_H_
|
|
|
|
#define GetSSL(obj, ssl) do { \
|
|
TypedData_Get_Struct((obj), SSL, &ossl_ssl_type, (ssl)); \
|
|
} while (0)
|
|
|
|
#define GetSSLSession(obj, sess) do { \
|
|
TypedData_Get_Struct((obj), SSL_SESSION, &ossl_ssl_session_type, (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 const rb_data_type_t ossl_ssl_type;
|
|
extern const rb_data_type_t ossl_ssl_session_type;
|
|
extern VALUE mSSL;
|
|
extern VALUE cSSLSocket;
|
|
extern VALUE cSSLSession;
|
|
|
|
void Init_ossl_ssl(void);
|
|
void Init_ossl_ssl_session(void);
|
|
|
|
#endif /* _OSSL_SSL_H_ */
|