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);