pretty_print_address->print_address
Hrvoje Niksic <[email protected]> Thu, 30 Jun 2005 22:21:41 +0200
| Newsgroups | gmane.comp.web.wget.patches |
|---|---|
| Message-ID | <[email protected]> |
This renamed the oddly-named "pretty_print_address" to just print_address and somewhat clarifies the semantics. 2005-06-30 Hrvoje Niksic <[email protected]> * host.c (pretty_print_address): Renamed to just print_address. Clarify documentation. Index: src/ftp.c =================================================================== --- src/ftp.c (revision 1917) +++ src/ftp.c (working copy) @@ -651,8 +651,7 @@ if (err==FTPOK) { DEBUGP (("trying to connect to %s port %d\n", - pretty_print_address (&passive_addr), - passive_port)); + print_address (&passive_addr), passive_port)); dtsock = connect_to_ip (&passive_addr, passive_port, NULL); if (dtsock < 0) { @@ -660,7 +659,7 @@ fd_close (csock); con->csock = -1; logprintf (LOG_VERBOSE, _("couldn't connect to %s port %d: %s\n"), - pretty_print_address (&passive_addr), passive_port, + print_address (&passive_addr), passive_port, strerror (save_errno)); return (retryable_socket_connect_error (save_errno) ? CONERROR : CONIMPOSSIBLE); Index: src/mswindows.c =================================================================== --- src/mswindows.c (revision 1917) +++ src/mswindows.c (working copy) @@ -851,8 +851,8 @@ #ifdef ENABLE_IPV6 /* An IPv6-only inet_ntop that prints with WSAAddressToString. (Wget - uses inet_ntoa for IPv4 addresses -- see pretty_print_address.) - Prototype complies with POSIX 1003.1-2004. */ + uses inet_ntoa for IPv4 addresses -- see print_address.) Prototype + complies with POSIX 1003.1-2004. */ const char * inet_ntop (int af, const void *src, char *dst, socklen_t cnt) Index: src/host.c =================================================================== --- src/host.c (revision 1917) +++ src/host.c (working copy) @@ -404,12 +404,12 @@ #endif /* ENABLE_IPV6 */ -/* Pretty-print ADDR. When compiled without IPv6, this is the same as - inet_ntoa. With IPv6, it either prints an IPv6 address or an IPv4 - address. */ +/* Return a textual representation of ADDR, i.e. the dotted quad for + IPv4 addresses, and the colon-separated list of hex words (with all + zeros omitted, etc.) for IPv6 addresses. */ const char * -pretty_print_address (const ip_address *addr) +print_address (const ip_address *addr) { switch (addr->type) { @@ -421,7 +421,7 @@ static char buf[64]; if (!inet_ntop (AF_INET6, &ADDRESS_IPV6_IN6_ADDR (addr), buf, sizeof (buf))) - snprintf (buf, sizeof buf, "[error: %s]", strerror (errno)); + snprintf (buf, sizeof buf, "<error: %s>", strerror (errno)); buf[sizeof (buf) - 1] = '\0'; return buf; } @@ -619,7 +619,7 @@ int i; debug_logprintf ("Caching %s =>", host); for (i = 0; i < al->count; i++) - debug_logprintf (" %s", pretty_print_address (al->addresses + i)); + debug_logprintf (" %s", print_address (al->addresses + i)); debug_logprintf ("\n"); } } @@ -815,8 +815,7 @@ int printmax = al->count <= 3 ? al->count : 3; for (i = 0; i < printmax; i++) { - logprintf (LOG_VERBOSE, "%s", - pretty_print_address (al->addresses + i)); + logputs (LOG_VERBOSE, print_address (al->addresses + i)); if (i < printmax - 1) logputs (LOG_VERBOSE, ", "); } Index: src/host.h =================================================================== --- src/host.h (revision 1917) +++ src/host.h (working copy) @@ -105,7 +105,7 @@ bool address_list_connected_p (const struct address_list *); void address_list_release (struct address_list *); -const char *pretty_print_address (const ip_address *); +const char *print_address (const ip_address *); #ifdef ENABLE_IPV6 bool is_valid_ipv6_address (const char *, const char *); #endif Index: src/connect.c =================================================================== --- src/connect.c (revision 1917) +++ src/connect.c (working copy) @@ -263,7 +263,7 @@ PRINT being the host name we're connecting to. */ if (print) { - const char *txt_addr = pretty_print_address (ip); + const char *txt_addr = print_address (ip); if (print && 0 != strcmp (print, txt_addr)) logprintf (LOG_VERBOSE, _("Connecting to %s|%s|:%d... "), escnonprint (print), txt_addr, port); @@ -460,8 +460,8 @@ return -1; } sockaddr_get_data (sa, NULL, port); - DEBUGP (("binding to address %s using port %i.\n", - pretty_print_address (bind_address), *port)); + DEBUGP (("binding to address %s using port %i.\n", + print_address (bind_address), *port)); } if (listen (sock, 1) < 0) { @@ -540,7 +540,7 @@ #ifdef HAVE_SOCKADDR_IN6_SCOPE_ID ADDRESS_IPV6_SCOPE (ip) = sa6->sin6_scope_id; #endif - DEBUGP (("conaddr is: %s\n", pretty_print_address (ip))); + DEBUGP (("conaddr is: %s\n", print_address (ip))); return true; } #endif @@ -549,7 +549,7 @@ struct sockaddr_in *sa = (struct sockaddr_in *)&storage; ip->type = IPV4_ADDRESS; ADDRESS_IPV4_IN_ADDR (ip) = sa->sin_addr; - DEBUGP (("conaddr is: %s\n", pretty_print_address (ip))); + DEBUGP (("conaddr is: %s\n", print_address (ip))); return true; } default: Index: src/ftp-basic.c =================================================================== --- src/ftp-basic.c (revision 1917) +++ src/ftp-basic.c (working copy) @@ -419,9 +419,6 @@ { int afnum; - assert (addr != NULL); - assert (addr->type == IPV4_ADDRESS || addr->type == IPV6_ADDRESS); - assert (buf != NULL); /* buf must contain the argument of EPRT (of the form |af|addr|port|). * 4 chars for the | separators, INET6_ADDRSTRLEN chars for addr * 1 char for af (1-2) and 5 chars for port (0-65535) */ @@ -429,7 +426,7 @@ /* Construct the argument of EPRT (of the form |af|addr|port|). */ afnum = (addr->type == IPV4_ADDRESS ? 1 : 2); - snprintf (buf, buflen, "|%d|%s|%d|", afnum, pretty_print_address (addr), port); + snprintf (buf, buflen, "|%d|%s|%d|", afnum, print_address (addr), port); buf[buflen - 1] = '\0'; } @@ -453,8 +450,6 @@ if (!socket_ip_address (csock, &addr, ENDPOINT_LOCAL)) return FTPSYSERR; - assert (addr.type == IPV4_ADDRESS || addr.type == IPV6_ADDRESS); - /* Setting port to 0 lets the system choose a free port. */ port = 0; @@ -698,7 +693,7 @@ addr->type = IPV4_ADDRESS; memcpy (ADDRESS_IPV4_DATA (addr), tmp, 4); *port = ((tmpprt[0] << 8) & 0xff00) + tmpprt[1]; - DEBUGP (("lpsv addr is: %s\n", pretty_print_address(addr))); + DEBUGP (("lpsv addr is: %s\n", print_address(addr))); DEBUGP (("tmpprt[0] is: %d\n", tmpprt[0])); DEBUGP (("tmpprt[1] is: %d\n", tmpprt[1])); DEBUGP (("*port is: %d\n", *port)); @@ -709,7 +704,7 @@ addr->type = IPV6_ADDRESS; memcpy (ADDRESS_IPV6_DATA (addr), tmp, 16); *port = ((tmpprt[0] << 8) & 0xff00) + tmpprt[1]; - DEBUGP (("lpsv addr is: %s\n", pretty_print_address(addr))); + DEBUGP (("lpsv addr is: %s\n", print_address(addr))); DEBUGP (("tmpprt[0] is: %d\n", tmpprt[0])); DEBUGP (("tmpprt[1] is: %d\n", tmpprt[1])); DEBUGP (("*port is: %d\n", *port));