Lines Matching defs:packed
41 - socket.inet_aton(IP address) -> 32-bit packed IP representation
42 - socket.inet_ntoa(packed IP) -> IP address string
6318 "inet_aton(string) -> bytes giving packed 32-bit IP representation\n\
6320 Convert an IP address in string format (123.45.67.89) to the 32-bit packed\n\
6393 Convert an IP address from 32-bit packed binary format to string format");
6407 "packed IP wrong length for inet_ntoa");
6423 "inet_pton(af, ip) -> packed IP address string\n\
6425 Convert an IP address from string format to a packed string suitable\n\
6435 char packed[Py_MAX(sizeof(struct in_addr), sizeof(struct in6_addr))];
6437 char packed[sizeof(struct in_addr)];
6451 retval = inet_pton(af, ip, packed);
6460 return PyBytes_FromStringAndSize(packed,
6464 return PyBytes_FromStringAndSize(packed,
6476 Convert a packed IP address of the given family to string format.");
6497 "invalid length of packed IP address string");
6505 "invalid length of packed IP address string");