Home | History | Annotate | Download | only in Modules

Lines Matching defs:inet_ntop

327 const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);

4074 "inet_ntop(af, packed_ip) -> string formatted IP address\n\
4094 if (!PyArg_ParseTuple(args, "is#:inet_ntop", &af, &packed, &len)) {
4118 retval = inet_ntop(af, packed, ip, sizeof(ip));
4127 PyErr_SetString(PyExc_RuntimeError, "invalid handling of inet_ntop");
4432 {"inet_ntop", socket_inet_ntop,
5541 inet_ntop(int af, const void *src, char *dst, socklen_t size)