Skip to content
Snippets Groups Projects
Commit a4a29c67 authored by Petr Špaček's avatar Petr Špaček
Browse files

Merge branch 'net_bufsize' into 'master'

clarification to docs for net.bufsize()

See merge request !821
parents c11d8de5 a4f6f3ce
Branches
Tags
1 merge request!821clarification to docs for net.bufsize()
Pipeline #48713 passed with stages
in 1 hour, 41 minutes, and 6 seconds
......@@ -283,14 +283,16 @@ Following commands are useful in special situations and can be usef with and wit
.. function:: net.bufsize([udp_bufsize])
Get/set maximum EDNS payload available. Default is 4096.
You cannot set less than 512 (512 is DNS packet size without EDNS, 1220 is minimum size for DNSSEC) or more than 65535 octets.
Get/set maximum EDNS payload size advertised in DNS packets. Default is 4096 bytes and the default will be lowered to value around 1220 bytes in future, once `DNS Flag Day 2020 <https://dnsflagday.net/>`_ becomes effective.
Minimal value allowed by standard :rfc:`6891` is 512 bytes, which is equal to DNS packet size without Extension Mechanisms for DNS. Value 1220 bytes is minimum size required in DNSSEC standard :rfc:`4035`.
Example output:
.. code-block:: lua
> net.bufsize 4096
> net.bufsize(4096)
nil
> net.bufsize()
4096
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment