diff mbox series

[2/3] tls: Replace tls->ready_handle with tls->ready_handler

Message ID 20230103144000.641471-2-marcel@holtmann.org (mailing list archive)
State New
Headers show
Series [1/3] tls: Use l_put_be64 for IV creation in case of AEAD ciphers | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success

Commit Message

Marcel Holtmann Jan. 3, 2023, 2:39 p.m. UTC
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 mbox series

Patch

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;