update components/nstackx/fillp/src/fillp_lib/include/fillp/fillp.h.

Signed-off-by: Agrant <luojuheng@huawei.com>
This commit is contained in:
Agrant 2024-08-28 15:51:32 +00:00 committed by Gitee
parent 76cbbe7979
commit 2b85eb806b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -386,9 +386,10 @@ typedef enum InnerfillpClientfourhandshakestateEnum {
#define FILLP_PKT_DISCONN_MSG_FLAG_IS_ACK(_flag) ((_flag)&FILLP_PKT_DISCONN_MSG_FLAG_ACK)
#define FILLP_PKT_DISCONN_MSG_FLAG_IS_VER(_flag) ((_flag) & FILLP_PKT_DISCONN_MSG_FLAG_VER)
__attribute__((no_sanitize("unsigned-integer-overflow")))
static __inline FILLP_INT FillpNumIsbigger(FILLP_UINT32 value1, FILLP_UINT32 value2)
{
return value1 > value2;
return ((FILLP_INT32)(value1 - value2)) > 0;
}
void FillpSendConnConfirmAck(struct FillpPcb *pcb);