Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname

This commit is contained in:
Senthil Kumaran 2012-04-29 12:51:54 +08:00
parent 0ce1649674
commit 1aacba497b
3 changed files with 10 additions and 13 deletions

View File

@ -269,8 +269,11 @@ of which this module provides three different variants:
.. method:: address_string()
Returns the client address, formatted for logging. A name lookup is
performed on the client's IP address.
Returns the client address.
.. versionchanged:: 3.3
Previously, a name lookup was performed. To avoid name resolution
delays, it now always returns the IP address.
.. class:: SimpleHTTPRequestHandler(request, client_address, server)

View File

@ -558,15 +558,9 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
def address_string(self):
"""Return the client address formatted for logging.
"""Return the client address."""
This version looks up the full hostname using gethostbyaddr(),
and tries to find a name that contains at least one dot.
"""
host, port = self.client_address[:2]
return socket.getfqdn(host)
return self.client_address[0]
# Essentially static class variables
@ -1040,9 +1034,6 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
env['SCRIPT_NAME'] = scriptname
if query:
env['QUERY_STRING'] = query
host = self.address_string()
if host != self.client_address[0]:
env['REMOTE_HOST'] = host
env['REMOTE_ADDR'] = self.client_address[0]
authorization = self.headers.get("authorization")
if authorization:

View File

@ -81,6 +81,9 @@ Core and Builtins
Library
-------
- Issue #6085: In http.server.py SimpleHTTPServer.address_string returns the
client ip address instead client hostname. Patch by Charles-François Natali.
- Issue #14309: Deprecate time.clock(), use time.perf_counter() or
time.process_time() instead.