summaryrefslogtreecommitdiff
path: root/tests/test_edns.py
Commit message (Collapse)AuthorAgeFilesLines
* increase EDNS coverageBob Halley2020-07-261-0/+21
|
* Add dns.edns.register_type().Brian Wellington2020-07-171-0/+37
| | | | This allows an application to register a custom EDNS option type.
* more EDNS coverageBob Halley2020-06-191-0/+27
|
* Improve EDNS option test coverage.Brian Wellington2020-06-171-8/+13
|
* Remove "from __future__ import" statements.Brian Wellington2020-05-011-2/+0
| | | | None of these are needed anymore.
* added tests for dns.edns.ECSOption.from_text()kimballo2019-10-031-0/+41
|
* The EDNS0 client-subnet code didn't work correctly for addresses thatBob Halley2019-05-031-0/+7
| | | | | | | | were not a multiple of 8 bits. Instead of preserving the required number of high-order bits, it cleared that number of low-order bits. Thanks to Brian Wellington for discovering this and providing the correct code.
* fix coding lines broken by copyright updateBob Halley2018-12-011-1/+1
|
* update copyrightBob Halley2018-12-011-0/+2
|
* Initial type signaturesJanus2018-07-311-4/+1
|
* The IPv4 and IPv6 inet_ntoa() functions were returning binaryBob Halley2017-01-021-1/+1
| | | | instead of text, a Py2/Py3 merge bug.
* Clarify ceiling, add tests, fix doc, fix python3pascal.bouchareine2016-11-081-0/+63
- bad class doc - explicit ceil - python3 encoding issue - improve edns testing