commit | ad05cdfa1f3e2ddee87cdbcf212a6983dc5d982b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Feb 12 23:08:22 2003 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Feb 12 23:08:22 2003 +0000 |
tree | e61ded3feefa658b76fd62e7aa4c870041d42502 | |
parent | 2294c0d4ecd81d01ddf741fff02cc04bd8de0638 [diff] |
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.)