Closed msk closed 2 weeks ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 76.97%. Comparing base (
77fed66
) to head (976561e
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
In the
check_address
function, we were cloning thestart
andend
fields of theIpRange
struct. However, since we only need to dereference these fields to parse them asIpAddr
, we can useas_deref
instead of cloning.