connection.h: fix comment

This commit is contained in:
Thomas Kolb 2024-09-20 23:38:54 +02:00
parent 44921bd65d
commit a455fac050

View file

@ -60,9 +60,9 @@ void connection_destroy(connection_ctx_t *ctx);
/*!\brief Handle a received packet. /*!\brief Handle a received packet.
* *
* \param ctx The receiver context. * \param ctx The connection context.
* \param buf Where to write the encoded packet data. * \param buf Pointer to the packet data.
* \param buf_len Space available in the buffer. * \param buf_len Length of the packet.
* \returns A result code from the packet handling procedure. * \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); result_t connection_handle_packet(connection_ctx_t *ctx, const uint8_t *buf, size_t buf_len);