]> granicus.if.org Git - pdns/commitdiff
Fix params inside the function role
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 18 Jul 2017 15:09:03 +0000 (17:09 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 18 Jul 2017 15:09:03 +0000 (17:09 +0200)
pdns/recursordist/docs/lua-config/protobuf.rst

index fa585357e7cf4a51354a3dde21f18ab52691d37c..579a029fc46606e26de7f1581cfffb819029afb1 100644 (file)
@@ -14,14 +14,14 @@ Protobuf export to a server is enabled using the ``protobufServer()`` directive:
 
 .. function:: protobufServer(server [[[[[[[, timeout=2], maxQueuedEntries=100], reconnectWaitTime=1], maskV4=32], maskV6=128], asyncConnect=false], taggedOnly=false])
 
-:param string server: The IP and port to connect to
-:param int timeout: Time in seconds to wait when sending a message
-:param int maxQueuedEntries: How many entries will be kept in memory if the server becomes unreachable
-:param int reconnectWaitTime: How long to wait, in seconds, between two reconnection attempts
-:param int maskV4: network mask to apply to the client IPv4 addresses, for anonymization purposes. The default of 32 means no anonymization.
-:param int maskV6: Same as maskV4, but for IPv6. Defaults to 128.
-:param bool taggedOnly: Only entries with a policy or a policy tag set will be sent.
-:param bool asyncConnect: When set to false (default) the first connection to the server during startup will block up to ``timeout`` seconds, otherwise the connection is done in a separate thread.
+  :param string server: The IP and port to connect to
+  :param int timeout: Time in seconds to wait when sending a message
+  :param int maxQueuedEntries: How many entries will be kept in memory if the server becomes unreachable
+  :param int reconnectWaitTime: How long to wait, in seconds, between two reconnection attempts
+  :param int maskV4: network mask to apply to the client IPv4 addresses, for anonymization purposes. The default of 32 means no anonymization.
+  :param int maskV6: Same as maskV4, but for IPv6. Defaults to 128.
+  :param bool taggedOnly: Only entries with a policy or a policy tag set will be sent.
+  :param bool asyncConnect: When set to false (default) the first connection to the server during startup will block up to ``timeout`` seconds, otherwise the connection is done in a separate thread.
 
 Logging outgoing queries and responses
 --------------------------------------
@@ -30,11 +30,11 @@ While :func:`protobufServer` only exports the queries sent to the recursor from
 
 .. function:: outgoingProtobufServer(server [[[[, timeout=2], maxQueuedEntries=100], reconnectWaitTime=1], asyncConnect=false])
 
-:param string server: The IP and port to connect to
-:param int timeout: Time in seconds to wait when sending a message
-:param int maxQueuedEntries: How many entries will be kept in memory if the server becomes unreachable
-:param int reconnectWaitTime: How long to wait, in seconds, between two reconnection attempts
-:param bool asyncConnect: When set to false (default) the first connection to the server during startup will block up to ``timeout`` seconds, otherwise the connection is done in a separate thread.
+  :param string server: The IP and port to connect to
+  :param int timeout: Time in seconds to wait when sending a message
+  :param int maxQueuedEntries: How many entries will be kept in memory if the server becomes unreachable
+  :param int reconnectWaitTime: How long to wait, in seconds, between two reconnection attempts
+  :param bool asyncConnect: When set to false (default) the first connection to the server during startup will block up to ``timeout`` seconds, otherwise the connection is done in a separate thread.
 
 Protobol Buffers Definition
 ---------------------------