You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 52 return struct.pack('2B', *[0, ip.prefixlen]) + ip.ip.packed
It should be changed from "ip.ip" to "ip.network_address" return struct.pack('2B', *[0, ip.prefixlen]) + ip.network_address.packed
Line 52
return struct.pack('2B', *[0, ip.prefixlen]) + ip.ip.packedIt should be changed from "ip.ip" to "ip.network_address"
return struct.pack('2B', *[0, ip.prefixlen]) + ip.network_address.packed