cppcoro icon indicating copy to clipboard operation
cppcoro copied to clipboard

net/ipv4_address.hpp bug

Open tlming16 opened this issue 3 years ago • 0 comments

constexpr bool is_private_network() const { return m_bytes[0] == 10 || (m_bytes[0] == 172 && (m_bytes[1] & 0xF0) == 0x10) || (m_bytes[0] == 192 && m_bytes[2] == 168); } where (m_bytes[0] == 192 && m_bytes[2] == 168) should be (m_bytes[0] == 192 && m_bytes[1] == 168) @lewissbaker

tlming16 avatar Mar 17 '21 14:03 tlming16