From f17a2fa0ed80e08bb8e1b89759b8abecca21783a Mon Sep 17 00:00:00 2001 From: Y7n05h Date: Thu, 28 Apr 2022 16:32:07 +0800 Subject: [PATCH] dnsdist: fix wrong parameter type in document Signed-off-by: Y7n05h --- pdns/dnsdistdist/docs/reference/ebpf.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/dnsdistdist/docs/reference/ebpf.rst b/pdns/dnsdistdist/docs/reference/ebpf.rst index a7fb1ba8b8..c9d838213d 100644 --- a/pdns/dnsdistdist/docs/reference/ebpf.rst +++ b/pdns/dnsdistdist/docs/reference/ebpf.rst @@ -113,10 +113,10 @@ These are all the functions, objects and methods related to the :doc:`../advance Exclude this range, or list of ranges, meaning that no dynamic block will ever be inserted for clients in that range. Default to empty, meaning rules are applied to all ranges. When used in combination with :meth:`DynBPFFilter:includeRange`, the more specific entry wins. - :param int netmasks: A netmask, or list of netmasks, as strings, like for example "192.0.2.1/24" + :param str or list of str netmasks: A netmask, or list of netmasks, as strings, like for example "192.0.2.1/24" .. method:: DynBPFFilter:includeRange(netmasks) Include this range, or list of ranges, meaning that rules will be applied to this range. When used in combination with :meth:`DynBPFFilter:excludeRange`, the more specific entry wins. - :param int netmasks: A netmask, or list of netmasks, as strings, like for example "192.0.2.1/24" + :param str or list of str netmasks: A netmask, or list of netmasks, as strings, like for example "192.0.2.1/24" -- 2.47.2