Lines Matching refs:inet_aton
41 - socket.inet_aton(IP address) -> 32-bit packed IP representation
101 * inet_aton is not available on OSX 10.3, yet we want to use a binary
105 # pragma weak inet_aton
6315 /* socket.inet_aton() and socket.inet_ntoa() functions. */
6318 "inet_aton(string) -> bytes giving packed 32-bit IP representation\n\
6339 if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr))
6346 if (inet_aton != NULL) {
6348 if (inet_aton(ip_addr, &buf))
6353 "illegal IP address string passed to inet_aton");
6375 "illegal IP address string passed to inet_aton");
7071 {"inet_aton", socket_inet_aton,