Home | History | Annotate | Download | only in Modules

Lines Matching defs:inet_aton

42 - socket.inet_aton(IP address) -> 32-bit packed IP representation

86 * inet_aton is not available on OSX 10.3, yet we want to use a binary
90 # pragma weak inet_aton
3835 /* socket.inet_aton() and socket.inet_ntoa() functions. */
3838 "inet_aton(string) -> packed 32-bit IP representation\n\
3862 if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr))
3869 if (inet_aton != NULL) {
3871 if (inet_aton(ip_addr, &buf))
3876 "illegal IP address string passed to inet_aton");
3897 "illegal IP address string passed to inet_aton");
4323 {"inet_aton", socket_inet_aton,