]> granicus.if.org Git - python/commit
Addressing SF bug #643005, implement socket.inet_aton() using
authorGuido van Rossum <guido@python.org>
Wed, 12 Feb 2003 23:08:22 +0000 (23:08 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 12 Feb 2003 23:08:22 +0000 (23:08 +0000)
commitad05cdfa1f3e2ddee87cdbcf212a6983dc5d982b
treee61ded3feefa658b76fd62e7aa4c870041d42502
parent2294c0d4ecd81d01ddf741fff02cc04bd8de0638
Addressing SF bug #643005, implement socket.inet_aton() using
inet_aton() rather than inet_addr() -- the latter is obsolete because
it has a problem: "255.255.255.255" is a valid address but
indistinguishable from an error.

(I'm not sure if inet_aton() exists everywhere -- in case it doesn't,
I've left the old code in with an #ifdef.)
Modules/socketmodule.c