/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/libs/poco/NetSSL_OpenSSL/src/Session.cpp
40 строк
590 B
qkrorlqr
Initial NBS OpenSource export
28 апр 2023, 21:54
28 апр 2023, 21:54
783a858
Код
Авторство
О чём код?
// // Session.cpp // // Library: NetSSL_OpenSSL // Package: SSLCore // Module: Session // // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #if defined(__APPLE__) // Some OpenSSL functions are deprecated in OS X 10.7 #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif #include "Poco/Net/Session.h" namespace Poco { namespace Net { Session::Session(SSL_SESSION* pSession): _pSession(pSession) { } Session::~Session() { SSL_SESSION_free(_pSession); } } } // namespace Poco::Net