Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • 3
    +1 for underlying function. To add, this function will cause IP parsing to fail if a valid byte (eg .88) is zero-padded, since 8 is not a valid number in octal.
    – March Ho
    Commented Dec 29, 2014 at 13:34
  • In Windows XP (and before that) the function WILL accept invalid octal numbers and still attempts to convert them. This can lead to very non-obvious behavior. As of Vista invalid numbers are treated as domain names and Windows will attempt to do a DNS lookup for these. Which is pretty odd behavior too, but that will at least not cause any problems.
    – Tonny
    Commented Dec 29, 2014 at 16:04
  • @tonny that's because POSIX inet_addr() returns -1 for invalid values, which loops around to 255. The newer routine, as mentioned in the Linux man page, has better error handling.
    – cde
    Commented Dec 29, 2014 at 16:48
  • @cde I never bothered to delve that deep into the mechanics of inet_addr(). I'll take your word for it :-)
    – Tonny
    Commented Dec 29, 2014 at 19:30