| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | redirect to dnspython | Bob Halley | 2016-09-20 | 1 | -1290/+0 |
| | | |||||
| * | pass the response to NoAnswer correctly | Bob Halley | 2016-02-21 | 1 | -1/+1 |
| | | |||||
| * | Import dns.tsig | Bob Halley | 2016-02-21 | 1 | -0/+1 |
| | | |||||
| * | In python 3, the getaddrinfo 'socktype' parameter was renamed to 'type' | Bob Halley | 2015-10-06 | 1 | -3/+3 |
| | | |||||
| * | Add information about protocol, request, and response to NoNameservers ↵ | Petr Spacek | 2015-05-21 | 1 | -11/+20 |
| | | | | | | | | | | | | exception. Information about UDP/TCP protocol usage is returned from str(NoNameservers) but request and response variables are intended for application debug logs and are not returned from str(). str() for parametrized version of the exception now returns string like: All nameservers failed to answer the query localhost. IN URI: Server 192.0.2.1 TCP port 53 anwered BADVERS; Server 192.0.2.2 UDP port 53 anwered BADVERS | ||||
| * | Convert NoNameservers exception to the new DNSException style. | Petr Spacek | 2015-05-21 | 1 | -17/+17 |
| | | | | | | str() for parametrized version now returns string like: All nameservers failed to answer the query localhost. IN URI: Server 192.0.2.1 anwered BADVERS; Server 192.0.2.55 anwered BADVERS | ||||
| * | Add response to NoAnswer exception. | Petr Spacek | 2015-05-21 | 1 | -4/+7 |
| | | | | | | | Only question section is returned from str(NoAnswer). Whole response variable is intended for application debug logs and is not returned from str(). | ||||
| * | Convert NoAnswer exception to the new DNSException style. | Petr Spacek | 2015-05-21 | 1 | -12/+4 |
| | | | | | | str() for paramerized exceptions returns string like: The DNS response does not contain an answer to the question: localhost. IN URI | ||||
| * | Return list of non-existent names as part of str(NXDOMAIN). | Petr Spacek | 2015-05-21 | 1 | -1/+16 |
| | | |||||
| * | Return timeout duration as part of str(Timeout). | Petr Spacek | 2015-05-21 | 1 | -5/+5 |
| | | |||||
| * | Remove redundant 'pass' from class definitions. | Petr Spacek | 2015-02-12 | 1 | -4/+0 |
| | | |||||
| * | Extend NoNameservers exception with list of servers and respective errors. | Petr Spacek | 2015-02-12 | 1 | -8/+31 |
| | | | | | | String represetation of the NoNameservers exception now looks like: "No non-broken nameservers are available to answer the query. Server 10.16.78.1 REFUSED; Server 10.16.78.2 SERVFAIL" | ||||
| * | Extend NoAnswer exception with optional question. | Petr Spacek | 2015-02-12 | 1 | -5/+16 |
| | | | | | | | The actual question will be printed as part of string representation of NoAnswer exception instead of terse "The response did not contain an answer to the question." | ||||
| * | Amend doc strings for all DNSExceptions to make them suitable for direct ↵ | Petr Spacek | 2015-02-12 | 1 | -8/+5 |
| | | | | | printing. | ||||
| * | Tweak options rotate. | Bob Halley | 2014-08-31 | 1 | -1/+1 |
| | | |||||
| * | add options rotate handling | Batch User | 2014-08-31 | 1 | -0/+7 |
| | | | | | | for resolv.conf "options rotate" line, enable shuffling of nameservers before each query. (should just rotate start position and maintain order?). | ||||
| * | retry_servfail -> self.retry_servfail | Bob Halley | 2013-07-17 | 1 | -1/+1 |
| | | |||||
| * | Add some backwards compatibility to the winreg fix | Bob Halley | 2013-07-07 | 1 | -1/+4 |
| | | |||||
| * | add set_flags() | Bob Halley | 2013-06-30 | 1 | -0/+12 |
| | | |||||
| * | lock caches in case they are shared | Bob Halley | 2013-03-31 | 1 | -49/+80 |
| | | |||||
| * | Do not retry SERVFAILing nameservers by default | Bob Halley | 2013-03-31 | 1 | -1/+5 |
| | | |||||
| * | Raise YXDOMAIN if we see a YXDOMAIN rcode | Bob Halley | 2013-03-31 | 1 | -0/+7 |
| | | |||||
| * | Fix _winreg renamed to winreg in python 3 | Christopher Lambacher | 2012-12-15 | 1 | -1/+1 |
| | | |||||
| * | doco fixes | Bob Halley | 2012-04-08 | 1 | -2/+1 |
| | | |||||
| * | Add source_port support to resolver; fix source_port in query code | Bob Halley | 2012-04-08 | 1 | -7/+14 |
| | | |||||
| * | try TCP if UDP response is truncated | Bob Halley | 2012-04-08 | 1 | -0/+18 |
| | | |||||
| * | add LRUCache | Bob Halley | 2011-08-24 | 1 | -2/+126 |
| | | |||||
| * | add dns.resolver.override_system_resolver() and ↵ | Bob Halley | 2011-07-13 | 1 | -0/+235 |
| | | | | | dns.resolver.restore_system_resolver() | ||||
| * | update copyrights | Bob Halley | 2011-05-12 | 1 | -1/+1 |
| | | |||||
| * | get the first thing from a dictionary view in the python 3 way | Bob Halley | 2011-05-03 | 1 | -1/+1 |
| | | |||||
| * | merge changes up to py3merge2 tag; update tests to assert style | Bob Halley | 2011-04-28 | 1 | -9/+38 |
| | | |||||
| * | merge 1.9.2 master | Bob Halley | 2010-12-12 | 1 | -5/+15 |
| | | |||||
| * | pull up use_tsig() invocation fix | Bob Halley | 2010-03-14 | 1 | -1/+2 |
| | | |||||
| * | Initial python 3 port (may have sharp edges still!) | Bob Halley | 2010-01-25 | 1 | -12/+7 |
| | | |||||
| * | create exceptions with arguments as "raise E(args)" instead of "raise E, args" | Bob Halley | 2010-01-14 | 1 | -11/+11 |
| | | |||||
| * | update copyrights for 2010 | Bob Halley | 2010-01-13 | 1 | -1/+1 |
| | | |||||
| * | add support for more TSIG algorithms | Bob Halley | 2009-11-13 | 1 | -3/+12 |
| | | |||||
| * | Set the domain correctly on Windows | Bob Halley | 2009-06-19 | 1 | -2/+2 |
| | | |||||
| * | Allow a source port to be specified | Bob Halley | 2009-06-18 | 1 | -5/+9 |
| | | |||||
| * | update copyrights | Bob Halley | 2009-06-18 | 1 | -1/+1 |
| | | |||||
| * | fix indentation | Bob Halley | 2007-03-28 | 1 | -46/+46 |
| | | |||||
| * | find enabled NICs on Windows Vista | Bob Halley | 2007-02-08 | 1 | -9/+58 |
| | | |||||
| * | update copyrights for 2007 | Bob Halley | 2007-01-01 | 1 | -1/+1 |
| | | |||||
| * | if /etc/resolv.conf does not exist, just use the default resolver config | Bob Halley | 2006-08-17 | 1 | -1/+7 |
| | | |||||
| * | call self._config_win32_search() with the right variable | Bob Halley | 2006-07-27 | 1 | -1/+1 |
| | | |||||
| * | implement more of the sequence protocol in Answer | Bob Halley | 2006-07-20 | 1 | -2/+17 |
| | | |||||
| * | oops | Bob Halley | 2006-03-28 | 1 | -1/+1 |
| | | |||||
| * | don't remove from a list while iterating it | Bob Halley | 2006-03-27 | 1 | -1/+1 |
| | | |||||
| * | do not delay responses for successful queries | Bob Halley | 2006-03-17 | 1 | -0/+2 |
| | | |||||
| * | cope with irritating windows registry list delimiters | Bob Halley | 2006-01-04 | 1 | -7/+24 |
| | | |||||
