From cff8c545c04b74c4c7745a49c09b526e7acbbf83 Mon Sep 17 00:00:00 2001 From: Kody Stribrny <89810515+kstribrnAmzn@users.noreply.github.com> Date: Thu, 8 Feb 2024 15:08:46 -0800 Subject: [PATCH] Update source/interface/transport_interface.h Rewording Co-authored-by: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> --- source/interface/transport_interface.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/interface/transport_interface.h b/source/interface/transport_interface.h index e63949702..43406adf7 100644 --- a/source/interface/transport_interface.h +++ b/source/interface/transport_interface.h @@ -197,8 +197,9 @@ typedef struct NetworkContext NetworkContext_t; * * @note It is HIGHLY RECOMMENDED that the transport receive * implementation does NOT block when requested to read bytes. - * CoreMQTT will continue to request bytes from the transport - * interface until it has received all bytes necessary for a MQTT packet. + * coreMQTT will continue to call the transport interface if it receives + * a partial packet until it accumulates enough data to get the complete + * MQTT packet. * * @param[in] pNetworkContext Implementation-defined network context. * @param[in] pBuffer Buffer to receive the data into.