[PATCH 2/3] tls: Replace tls->ready_handle with tls->ready_handler
Marcel Holtmann <[email protected]> Tue, 3 Jan 2023 15:39:59 +0100
| Newsgroups | dev.linux.lists.ell |
|---|---|
| Message-ID | <[email protected]> |
In general the naming should be "handler" instead of "handle" if it is a
callback function.
---
ell/tls-private.h | 2 +-
ell/tls.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ell/tls-private.h b/ell/tls-private.h
index 46889ad86769..bfd20b10cf88 100644
--- a/ell/tls-private.h
+++ b/ell/tls-private.h
@@ -200,7 +200,7 @@ struct l_tls {
bool server;
l_tls_write_cb_t tx, rx;
- l_tls_ready_cb_t ready_handle;
+ l_tls_ready_cb_t ready_handler;
l_tls_disconnect_cb_t disconnected;
void *user_data;
l_tls_debug_cb_t debug_handler;
diff --git a/ell/tls.c b/ell/tls.c
index 72ff4d7723ec..687797f1e466 100644
--- a/ell/tls.c
+++ b/ell/tls.c
@@ -3072,7 +3072,7 @@ static void tls_finished(struct l_tls *tls)
if (!renegotiation) {
tls->in_callback = true;
- tls->ready_handle(peer_identity, tls->user_data);
+ tls->ready_handler(peer_identity, tls->user_data);
tls->in_callback = false;
}
@@ -3361,7 +3361,7 @@ LIB_EXPORT struct l_tls *l_tls_new(bool server,
tls->server = server;
tls->rx = app_data_handler;
tls->tx = tx_handler;
- tls->ready_handle = ready_handler;
+ tls->ready_handler = ready_handler;
tls->disconnected = disconnect_handler;
tls->user_data = user_data;
tls->cipher_suite_pref_list = tls_cipher_suite_pref;
--
2.39.0