Home | History | Annotate | Download | only in Modules

Lines Matching defs:inet_aton

42 - socket.inet_aton(IP address) -> 32-bit packed IP representation
91 * inet_aton is not available on OSX 10.3, yet we want to use a binary
95 # pragma weak inet_aton
3942 /* socket.inet_aton() and socket.inet_ntoa() functions. */
3945 "inet_aton(string) -> packed 32-bit IP representation\n\
3969 if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr))
3976 if (inet_aton != NULL) {
3978 if (inet_aton(ip_addr, &buf))
3983 inet_aton");
4004 "illegal IP address string passed to inet_aton");
4450 {"inet_aton", socket_inet_aton,