mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Fix call to socket_ip_address.
This commit is contained in:
parent
8e330fdba0
commit
36387204b0
@ -1,3 +1,13 @@
|
||||
2003-11-15 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* http.c (persistent_available_p): Correctly specify the endpoint
|
||||
argument to socket_ip_address.
|
||||
(gethttp): When printing the "reusing connection to..." message,
|
||||
specify the host name of the reused connection, not the current
|
||||
host name. That makes more sense because it provides a useful
|
||||
piece of information -- we know to which host we're supposed to
|
||||
connect anyway!
|
||||
|
||||
2003-11-15 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* init.c: Make sure the options are in alphabetic order!
|
||||
|
@ -460,7 +460,7 @@ persistent_available_p (const char *host, int port, int ssl,
|
||||
resolves to, pconn.socket is for all intents and purposes
|
||||
already talking to HOST. */
|
||||
|
||||
if (!socket_ip_address (pconn.socket, &ip, 0))
|
||||
if (!socket_ip_address (pconn.socket, &ip, ENDPOINT_PEER))
|
||||
{
|
||||
/* Can't get the peer's address -- something must be very
|
||||
wrong with the connection. */
|
||||
@ -739,10 +739,8 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
|
||||
}
|
||||
else
|
||||
{
|
||||
logprintf (LOG_VERBOSE, _("Reusing connection to %s:%hu.\n"),
|
||||
conn->host, conn->port);
|
||||
/* #### pc_last_fd should be accessed through an accessor
|
||||
function. */
|
||||
logprintf (LOG_VERBOSE, _("Reusing existing connection to %s:%d.\n"),
|
||||
pconn.host, pconn.port);
|
||||
sock = pconn.socket;
|
||||
using_ssl = pconn.ssl;
|
||||
DEBUGP (("Reusing fd %d.\n", sock));
|
||||
|
Loading…
Reference in New Issue
Block a user