diff options
author | deshevoy <deshevoy@yandex-team.ru> | 2022-02-10 16:46:57 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:57 +0300 |
commit | 28148f76dbfcc644d96427d41c92f36cbf2fdc6e (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /library/cpp/openssl/holders/bio.cpp | |
parent | e988f30484abe5fdeedcc7a5d3c226c01a21800c (diff) | |
download | ydb-28148f76dbfcc644d96427d41c92f36cbf2fdc6e.tar.gz |
Restoring authorship annotation for <deshevoy@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/openssl/holders/bio.cpp')
-rw-r--r-- | library/cpp/openssl/holders/bio.cpp | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/library/cpp/openssl/holders/bio.cpp b/library/cpp/openssl/holders/bio.cpp index 5b4eba8234..42cc5fc1ef 100644 --- a/library/cpp/openssl/holders/bio.cpp +++ b/library/cpp/openssl/holders/bio.cpp @@ -1,29 +1,29 @@ -#include "bio.h" - -namespace NOpenSSL { - - TBioMethod::TBioMethod( - int type, - const char* name, - int (*write)(BIO*, const char*, int), - int (*read)(BIO*, char*, int), - int (*puts)(BIO*, const char*), - int (*gets)(BIO*, char*, int), - long (*ctrl)(BIO*, int, long, void*), - int (*create)(BIO*), - int (*destroy)(BIO*), - long (*callbackCtrl)(BIO*, int, bio_info_cb*) - ) - : THolder(type, name) - { +#include "bio.h" + +namespace NOpenSSL { + + TBioMethod::TBioMethod( + int type, + const char* name, + int (*write)(BIO*, const char*, int), + int (*read)(BIO*, char*, int), + int (*puts)(BIO*, const char*), + int (*gets)(BIO*, char*, int), + long (*ctrl)(BIO*, int, long, void*), + int (*create)(BIO*), + int (*destroy)(BIO*), + long (*callbackCtrl)(BIO*, int, bio_info_cb*) + ) + : THolder(type, name) + { BIO_meth_set_write(*this, write); - BIO_meth_set_read(*this, read); - BIO_meth_set_puts(*this, puts); - BIO_meth_set_gets(*this, gets); - BIO_meth_set_ctrl(*this, ctrl); - BIO_meth_set_create(*this, create); - BIO_meth_set_destroy(*this, destroy); - BIO_meth_set_callback_ctrl(*this, callbackCtrl); - } - -} // namespace NOpenSSL + BIO_meth_set_read(*this, read); + BIO_meth_set_puts(*this, puts); + BIO_meth_set_gets(*this, gets); + BIO_meth_set_ctrl(*this, ctrl); + BIO_meth_set_create(*this, create); + BIO_meth_set_destroy(*this, destroy); + BIO_meth_set_callback_ctrl(*this, callbackCtrl); + } + +} // namespace NOpenSSL |