mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ossl_engine.c: typed data
* ext/openssl/ossl_engine.c (ossl_engine_type): use typed data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cfa7024e25
commit
b0a379e3b0
1 changed files with 16 additions and 2 deletions
|
@ -16,10 +16,10 @@
|
|||
if (!(engine)) { \
|
||||
ossl_raise(rb_eRuntimeError, "ENGINE wasn't initialized."); \
|
||||
} \
|
||||
(obj) = Data_Wrap_Struct((klass), 0, ENGINE_free, (engine)); \
|
||||
(obj) = TypedData_Wrap_Struct((klass), &ossl_engine_type, (engine)); \
|
||||
} while(0)
|
||||
#define GetEngine(obj, engine) do { \
|
||||
Data_Get_Struct((obj), ENGINE, (engine)); \
|
||||
TypedData_Get_Struct((obj), ENGINE, &ossl_engine_type, (engine)); \
|
||||
if (!(engine)) { \
|
||||
ossl_raise(rb_eRuntimeError, "ENGINE wasn't initialized."); \
|
||||
} \
|
||||
|
@ -57,6 +57,20 @@ do{\
|
|||
}\
|
||||
}while(0)
|
||||
|
||||
static void
|
||||
ossl_engine_free(void *engine)
|
||||
{
|
||||
ENGINE_free(engine);
|
||||
}
|
||||
|
||||
static const rb_data_type_t ossl_engine_type = {
|
||||
"OpenSSL/Engine",
|
||||
{
|
||||
0, ossl_engine_free,
|
||||
},
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY,
|
||||
};
|
||||
|
||||
/* Document-method: OpenSSL::Engine.load
|
||||
*
|
||||
* call-seq:
|
||||
|
|
Loading…
Reference in a new issue