moby / ipvs

IPVS networking for containers (package derived from moby/libnetwork)
Apache License 2.0
97 stars 37 forks source link

Connections counters overflow #25

Closed ns-jtenberge closed 2 years ago

ns-jtenberge commented 2 years ago

The active and inactive connection counters are represented by 16 bit unsigned integers in this library, even though they are returned as 32 bit values by the system. This leads to a rollover of values if more than 2^16 = 65,536 connections exist for a destination. See #24 for a fix.