summaryrefslogtreecommitdiff
path: root/ssl-compat.h
Commit message (Collapse)AuthorAgeFilesLines
* Drop unused le_ssl_ops::err_is_okAzat Khuzhin2023-05-161-1/+0
| | | | | It is not used anymore since errors are ignored if some progress had been done.
* ssl: do not triger EOF if some data had been successfully readAzat Khuzhin2023-05-141-0/+1
| | | | | | | | Previously in case when evbuffer_reserve_space() returns > 1, but it was able to read only 1 IO vector, it will try to read the next one, got 0 (EOF for mbedTLS or SSL_ERROR_ZERO_RETURN for OpenSSL) and will trigger EOF, while instead, it should trigger EV_READ w/o EOF and only after EOF.
* ssl: rename err_is_ok to handshake_is_ok (internal API)Azat Khuzhin2023-05-141-1/+1
|
* Introduce new API for flags of the SSL buffereventAzat Khuzhin2020-10-311-2/+2
| | | | | | | | | | | | | Introduce more generic API (like for evbuffer): - bufferevent_ssl_set_flags() - bufferevent_ssl_clear_flags() - bufferevent_ssl_get_flags() And deprecate existing: - bufferevent_openssl_get_allow_dirty_shutdown() - bufferevent_openssl_set_allow_dirty_shutdown() - bufferevent_mbedtls_get_allow_dirty_shutdown() - bufferevent_mbedtls_set_allow_dirty_shutdown()
* Join le_ssl_ops.post_init with le_ssl_ops.initAzat Khuzhin2020-07-221-1/+0
|
* Merge ssl implementations (openssl and mbedtls)okhowang(王沛文)2020-07-221-0/+102
This patch splits common part out to avoid copy-paste from the - bufferevent_openssl.c - bufferevent_mbedtls.c It uses VFS/bufferevent-like approach, i.e. structure of callbacks.