| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | redirect to dnspython | Bob Halley | 2016-09-20 | 91 | -13748/+0 |
| | | |||||
| * | Fix NameDicts so they keep track of the max_length properly and handle ↵ | Francisco Izquierdo | 2016-03-04 | 1 | -6/+46 |
| | | | | | things like update properly | ||||
| * | 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 |
| | | |||||
| * | Set response_time to zero when exceptions occur early. | Bob Halley | 2016-02-21 | 1 | -2/+10 |
| | | |||||
| * | Merge pull request #103 from encukou/py3-records | Bob Halley | 2015-12-03 | 3 | -0/+76 |
| |\ | | | | | Py3: Add missing code for URI and TLSA rrtypes from the python2 branch | ||||
| | * | Add TLSA to exports & copyrights lists | Petr Viktorin | 2015-05-27 | 1 | -0/+1 |
| | | | |||||
| | * | Add URI record type (draft-faltstrom-uri-13) | Petr Spacek | 2015-05-27 | 2 | -0/+75 |
| | | | |||||
| * | | Merge pull request #104 from encukou/py3-query-timer | Bob Halley | 2015-12-03 | 1 | -0/+6 |
| |\ \ | | | | | | | Py3: Add query timer | ||||
| | * | | Fix for timing, begin_time is not a function. | Mattias Lundberg | 2015-05-27 | 1 | -1/+1 |
| | | | | |||||
| | * | | Add response time to the response when querying a server. | Mattias Lundberg | 2015-05-27 | 1 | -0/+6 |
| | |/ | |||||
| * | | Merge pull request #102 from encukou/py3-pickle | Bob Halley | 2015-12-03 | 1 | -0/+7 |
| |\ \ | | | | | | | Py3: Implement the pickle protocol for Name objects | ||||
| | * | | Implement the pickle protocol. | Bob Halley | 2015-05-26 | 1 | -0/+7 |
| | |/ | |||||
| * | | Merge pull request #101 from encukou/py3-ecdsa | Bob Halley | 2015-12-03 | 1 | -2/+56 |
| |\ \ | | | | | | | Add ECDSA to python3 branch | ||||
| | * | | Preliminary Elliptic Curve DNSSEC Validation (requires ecdsa module) | Bob Halley | 2015-05-26 | 1 | -2/+56 |
| | |/ | |||||
| * | | Add support for EUI48 and EUI64 RR types | Petr Spacek | 2015-12-03 | 6 | -0/+134 |
| | | | |||||
| * | | Add support for CDNSKEY record type | Jan Vcelak | 2015-10-31 | 5 | -117/+159 |
| | | | |||||
| * | | Add support for CDS record type | Jan Vcelak | 2015-10-31 | 3 | -0/+22 |
| | | | |||||
| * | | Assign b'' to other_data in make_response when using TSIG. | Yuki Izumi | 2015-10-24 | 1 | -1/+1 |
| | | | |||||
| * | | In python 3, the getaddrinfo 'socktype' parameter was renamed to 'type' | Bob Halley | 2015-10-06 | 1 | -3/+3 |
| | | | |||||
| * | | Fix CAA from_wire() | Bob Halley | 2015-06-13 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #97 from encukou/zone-to_file | Bob Halley | 2015-05-21 | 1 | -8/+16 |
| |\ | | | | | Fix failing test for Zone.to_file | ||||
| | * | Fix failing test for Zone.to_file | Petr Viktorin | 2015-05-21 | 1 | -8/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | A fix for https://github.com/rthalley/dnspython/issues/94 Make the to_file method work on string files, unless explicitly told to do binary encoding. Take the line terminator from os, rather than relying on the print function. Change the test to use a text file rather than binary, and add a new test for to_file with a binary file. | ||||
| * | | 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 | 2 | -5/+7 |
| | | | |||||
| * | | Separate class docstring and default str() messages in DNSException. | Petr Spacek | 2015-05-21 | 1 | -4/+9 |
| | | | | | | | | | | | | | str() for non-parametrized exceptions still defaults to class docstring but now it is possible to simply override the message by defining class.msg variable. | ||||
| * | | Add list pretty-printing for parametrized exceptions. | Petr Spacek | 2015-05-21 | 1 | -1/+20 |
| | | | | | | | | | | | | | All list entries are converted to strings before the list is printed. I.e. one-item list is printed as 'vm-123.idm.lab.eng.brq.redhat.com. IN NS' instead [<DNS vm-123.idm.lab.eng.brq.redhat.com. IN NS RRset>]. | ||||
| * | | Add support for parametrizable __str__ in DNSException. | Petr Spacek | 2015-05-21 | 1 | -2/+50 |
| |/ | | | | | | | | | | | | This change makes __init__ and __str__ parametrization simpler and keeps backward compatiblity with old code which does not use keyword arguments in raise(). Parametrized __str__ can be implemented simply by defining "fmt" and "supp_kwargs" class variables in particular exception class. Doc string is used in cases where specific message parameters were not provided during instantiation/raise. | ||||
| * | zone.to_text() needs to make a StringIO | Bob Halley | 2015-03-21 | 1 | -1/+1 |
| | | |||||
| * | Remove redundant 'pass' from class definitions. | Petr Spacek | 2015-02-12 | 26 | -58/+0 |
| | | |||||
| * | Add missing docstring for BadTTL exception. | Petr Spacek | 2015-02-12 | 1 | -1/+1 |
| | | |||||
| * | 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 | 15 | -52/+47 |
| | | | | | printing. | ||||
| * | Support string representation for all DNSExceptions. | Petr Spacek | 2015-02-12 | 1 | -1/+6 |
| | | | | | | Doc string is used in cases where more specific message was not provided during instantiation/raise. | ||||
| * | All rdata comparsion now uses the digestable form. | Bob Halley | 2014-09-05 | 31 | -269/+7 |
| | | |||||
| * | Add CAA. | Bob Halley | 2014-09-05 | 2 | -0/+75 |
| | | |||||
| * | Remove deprecated universal newlines flag to open().v1.12.0-py3 | Bob Halley | 2014-09-01 | 1 | -1/+1 |
| | | |||||
| * | Prep 1.12.0 | Bob Halley | 2014-09-01 | 1 | -2/+2 |
| | | |||||
| * | Overhaul test suite to allow testing in place. | Bob Halley | 2014-08-31 | 1 | -0/+2 |
| | | |||||
| * | Add dns.ipv6.is_mapped(); Reverse IPv6 mapped IPv4 into v4 space. | Bob Halley | 2014-08-31 | 2 | -2/+12 |
| | | |||||
| * | Fix python3 port problem. | Bob Halley | 2014-08-31 | 1 | -1/+1 |
| | | |||||
| * | Add dns.rdtypes.ANY.DNSKEY.flags_to_text_set() and flags_from_text_set(). | Petr Spacek | 2014-08-31 | 1 | -0/+48 |
| | | | | | Map between DNSKEY RR flags bit array and set of human-readable names. | ||||
| * | Allow empty APL RR. | Bob Halley | 2014-08-31 | 1 | -2/+2 |
| | | |||||
| * | Fix relativization in RRSIG to_text(). | Bob Halley | 2014-08-31 | 1 | -1/+1 |
| | | |||||
| * | Fix exception when reading from a masterfile. | Bob Halley | 2014-08-31 | 1 | -1/+1 |
| | | |||||
