1
0
mirror of https://github.com/rtbrick/bngblaster.git synced 2024-05-06 15:54:57 +00:00

fix accounting packets for IPv6

This commit is contained in:
Christian Giese
2022-03-02 13:25:42 +01:00
parent 615dd9aca8
commit dc52079b8b

View File

@ -746,8 +746,7 @@ bbl_rx_ipv6(bbl_ethernet_header_t *eth, bbl_ipv6_t *ipv6, bbl_interface_s *inter
interface->stats.icmpv6_rx++;
return bbl_rx_icmpv6(eth, ipv6, interface, session);
case IPV6_NEXT_HEADER_UDP:
bbl_rx_udp_ipv6(eth, ipv6, interface, session);
break;
return bbl_rx_udp_ipv6(eth, ipv6, interface, session);
default:
break;
}