Skip to content
Snippets Groups Projects

Use default padding policy for responses.

Merged Daniel Kahn Gillmor requested to merge dkg/resolver:better-padding-default into master
All threads resolved!
Files
5
+ 7
4
@@ -604,10 +604,13 @@ For when listening on ``localhost`` just doesn't cut it.
.. function:: net.tls_padding([padding])
Get/set EDNS(0) padding. If set to value >= 2 it will pad the answers
to nearest *padding* boundary, e.g. if set to `64`, the answer will
have size of multiplies of 64 (64, 128, 192, ...). Setting padding to
value < 2 will disable it.
Get/set EDNS(0) padding of answers to queries that arrive over TLS
transport. If set to `true` (the default), it will use a sensible
default padding scheme, as implemented by libknot if available at
compile time. If set to a numeric value >= 2 it will pad the
answers to nearest *padding* boundary, e.g. if set to `64`, the
answer will have size of a multiple of 64 (64, 128, 192, ...). If
set to `false` (or a number < 2), it will disable padding entirely.
.. function:: net.outgoing_v4([string address])
Loading