How can I learn the DNS Server's IP address for my network, programmatically?
The idea is to learn DNS Server IP and initialize medusa.resolver accordingly.
Thanks in advance.
--
http://mail.python.org/mailman/listinfo/python-list
return asynchat.async_chat.readable(self)
def writable(self): return asynchat.async_chat.writable(self)
Abdullah Yoldas
On 3/15/06, Z. Kotzer <[EMAIL PROTECTED]> wrote:
I can not get error notifications when an asynchat based client tries toconnect to a non-responsive addres
): asynchat.fifo.__init__(self, list) self.have_deque = hasattr(self.list, 'appendleft')
def push_front(self, object): if self.have_deque: self.list.appendleft(object) else: self.list.insert(0, object)
Abdullah Yoldas
On 3/16/06, SA Trygubenko <[EM