summaryrefslogtreecommitdiff
path: root/ssl-compat.h
diff options
context:
space:
mode:
authorAzat Khuzhin <azat@libevent.org>2023-05-14 16:45:14 +0200
committerAzat Khuzhin <azat@libevent.org>2023-05-14 16:49:18 +0200
commit6375dcb46db4bb05c9c19c980f3ed6d0ff9b1065 (patch)
tree8cecc80335d5105ad378079d86f818cb71300f02 /ssl-compat.h
parentd06e573c600c46d1c4585be78f4329b300fb4a65 (diff)
downloadlibevent-6375dcb46db4bb05c9c19c980f3ed6d0ff9b1065.tar.gz
ssl: rename err_is_ok to handshake_is_ok (internal API)
Diffstat (limited to 'ssl-compat.h')
-rw-r--r--ssl-compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl-compat.h b/ssl-compat.h
index 4dccb52a..a556f4c0 100644
--- a/ssl-compat.h
+++ b/ssl-compat.h
@@ -20,7 +20,7 @@ struct le_ssl_ops {
int (*clear)(void *ssl);
void (*set_connect_state)(void *ssl);
void (*set_accept_state)(void *ssl);
- int (*err_is_ok)(int err);
+ int (*handshake_is_ok)(int err);
int (*err_is_want_read)(int err);
int (*err_is_want_write)(int err);
evutil_socket_t (*get_fd)(void *ssl);