From 9185c2ccc402d3368fc28ac90ab281b4f951719e Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Wed, 3 Apr 2024 23:03:46 +0200 Subject: Added support for STUN Mapped IP address --- example/ndpiReader.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'example/ndpiReader.c') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 029f784f2..16c88e947 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1457,7 +1457,6 @@ static void parseOptions(int argc, char **argv) { /* ********************************** */ -#if 0 /** * @brief A faster replacement for inet_ntoa(). */ @@ -1487,7 +1486,6 @@ char* intoaV4(u_int32_t addr, char* buf, u_int16_t bufLen) { return(cp); } -#endif /* ********************************** */ @@ -1905,6 +1903,14 @@ static void printFlow(u_int32_t id, struct ndpi_flow_info *flow, u_int16_t threa } } + if(flow->stun.mapped_address.ipv4 != 0) { + char buf[32]; + + fprintf(out, "[Mapped IP/Port: %s:%u]", + intoaV4(flow->stun.mapped_address.ipv4, buf, sizeof(buf)), + flow->stun.mapped_address.port); + } + if(flow->http.url[0] != '\0') { ndpi_risk_enum risk = ndpi_validate_url(flow->http.url); -- cgit v1.2.3