(self, client_id, hostname, port, is_localhost, result_pipe)
| 191 | ######################################################################################################################## |
| 192 | class AsyncDNS(threading.Thread): |
| 193 | def __init__(self, client_id, hostname, port, is_localhost, result_pipe): |
| 194 | threading.Thread.__init__(self) |
| 195 | self.hostname = hostname |
| 196 | self.port = port |
| 197 | self.client_id = client_id |
| 198 | self.is_localhost = is_localhost |
| 199 | self.result_pipe = result_pipe |
| 200 | |
| 201 | def run(self): |
| 202 | global lock, background_activity_count |