From a455fac050710c404a5bde19c4956e8532f292cb Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Fri, 20 Sep 2024 23:38:54 +0200 Subject: [PATCH] connection.h: fix comment --- impl/src/layer2/connection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/impl/src/layer2/connection.h b/impl/src/layer2/connection.h index d975f58..9857514 100644 --- a/impl/src/layer2/connection.h +++ b/impl/src/layer2/connection.h @@ -60,9 +60,9 @@ void connection_destroy(connection_ctx_t *ctx); /*!\brief Handle a received packet. * - * \param ctx The receiver context. - * \param buf Where to write the encoded packet data. - * \param buf_len Space available in the buffer. + * \param ctx The connection context. + * \param buf Pointer to the packet data. + * \param buf_len Length of the packet. * \returns A result code from the packet handling procedure. */ result_t connection_handle_packet(connection_ctx_t *ctx, const uint8_t *buf, size_t buf_len);