From 528a6517f8e23718f2a37d21b8853723a797773f Mon Sep 17 00:00:00 2001 From: David Gibson Date: Thu, 18 Jul 2024 15:26:32 +1000 Subject: tcp: Simplify endpoint validation using flowside information Now that we store all our endpoints in the flowside structure, use some inany helpers to make validation of those endpoints simpler. Signed-off-by: David Gibson Signed-off-by: Stefano Brivio --- inany.h | 1 - 1 file changed, 1 deletion(-) (limited to 'inany.h') diff --git a/inany.h b/inany.h index 8eaf533..d2893ce 100644 --- a/inany.h +++ b/inany.h @@ -211,7 +211,6 @@ static inline bool inany_is_multicast(const union inany_addr *a) * * Return: true if @a is specified and a unicast address */ -/* cppcheck-suppress unusedFunction */ static inline bool inany_is_unicast(const union inany_addr *a) { return !inany_is_unspecified(a) && !inany_is_multicast(a); -- cgit v1.2.3