i have a simple python cgi server: import BaseHTTPServer import CGIHTTPServer import cgitb; cgitb.enable() ## This line enables CGI error reporting server = BaseHTTPServer.HTTPServer handler = CGIHTTPServer.CGIHTTPRequestHandler server_address = ("", 8000) httpd = server(server_address, handler) httpd.serve_forever() the server does a reverse dns lookup on every request for logging purposes onto t
{{#tags}}- {{label}}
{{/tags}}