[PATCH nf-next 2/4] netfilter: nf_conntrack_sip: replace u_int16_t with u16

From: Carlos Grillet

Date: Tue Jul 07 2026 - 15:54:36 EST


Use preferred kernel integer type u16 instead of the POSIX u_int16_t
variant.

No functional change.

Signed-off-by: Carlos Grillet <carlos@xxxxxxxxxxxxxxxx>
---
net/netfilter/nf_conntrack_sip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netfilter/nf_conntrack_sip.c b/net/netfilter/nf_conntrack_sip.c
index 0ff089e03891..87c9c6b92a6d 100644
--- a/net/netfilter/nf_conntrack_sip.c
+++ b/net/netfilter/nf_conntrack_sip.c
@@ -935,7 +935,7 @@ static int set_expected_rtp_rtcp(struct sk_buff *skb, unsigned int protoff,
union nf_inet_addr *saddr;
struct nf_conntrack_tuple tuple;
int direct_rtp = 0, skip_expect = 0, ret = NF_DROP;
- u_int16_t base_port;
+ u16 base_port;
__be16 rtp_port, rtcp_port;
const struct nf_nat_sip_hooks *hooks;
struct nf_conn_help *help;
--
2.55.0