Git Product home page Git Product logo

Comments (3)

seancfoley avatar seancfoley commented on June 11, 2024

Hello. Firstly, you can use toAddress to get an exception. It is the same as getAddress but throws exceptions for invalid addresses instead of returning null. The exception will have a message indicating the issue.

Secondly, this behaviour is explained somewhat here, and somewhat here.

In summary, when you put a 0 in front of an IPv4 address value, it is, by default, considered to be octal. This is known as BSD-style format for IPv4. It originated with a routine known as inet_aton. If you put a similar address in your browser, http://89.000.074.209, you can see it is changed to http://89.0.60.209/. That is because 074 in octal is 60 decimal.

However, in your case, you used 094 octal, which is an invalid value, since octal does not allow '9' digits. So it is an invalid address. If you put http://89.000.094.209 in your browser you can see it is no longer considered an IPv4 address, and will likely do a search with it as a string.

You can use search parameters with this library to treat it as a decimal value. Example here of using IPAddressStringParameters. Use the setting allow_inet_aton_octal.

from ipaddress.

seancfoley avatar seancfoley commented on June 11, 2024

If you have further questions, feel free to ask.

from ipaddress.

lneves avatar lneves commented on June 11, 2024

Thanks for the explanation!

from ipaddress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.