I have a simple python cgi server:
import BaseHTTPServer import CGIHTTPServer import cgitb; cgitb.enable()
the server performs a reverse DNS lookup for each on-screen logging request. there is no dns server since I start the server in the local network settings. therefore, each reverse dns search results in a search timeout, delaying the server response. how can i turn off dns search? I did not find the answer in python docs.
source share