aboutsummaryrefslogtreecommitdiff
path: root/external/unbound/pythonmod/doc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--external/unbound/pythonmod/doc/examples/example4.rst2
-rw-r--r--external/unbound/pythonmod/doc/modules/config.rst2
-rw-r--r--external/unbound/pythonmod/doc/modules/env.rst2
-rw-r--r--external/unbound/pythonmod/doc/modules/struct.rst4
-rw-r--r--external/unbound/pythonmod/doc/usecase.rst2
5 files changed, 6 insertions, 6 deletions
diff --git a/external/unbound/pythonmod/doc/examples/example4.rst b/external/unbound/pythonmod/doc/examples/example4.rst
index 6cc484797..b665351e8 100644
--- a/external/unbound/pythonmod/doc/examples/example4.rst
+++ b/external/unbound/pythonmod/doc/examples/example4.rst
@@ -24,7 +24,7 @@ DNS query and word lookup
Let's define the following format od DNS queries: ``word1[.]word2[.] ... wordN[.]{en,cs}[._dict_.cz.]``.
Word lookup is done by simple ``dict`` lookup from broken DNS request.
-Query name is divided into a list of labels. This list is accesible as qname_list attribute.
+Query name is divided into a list of labels. This list is accessible as qname_list attribute.
::
aword = ' '.join(qstate.qinfo.qname_list[0:-4]) #skip last four labels
diff --git a/external/unbound/pythonmod/doc/modules/config.rst b/external/unbound/pythonmod/doc/modules/config.rst
index 1277bcedd..43333bdae 100644
--- a/external/unbound/pythonmod/doc/modules/config.rst
+++ b/external/unbound/pythonmod/doc/modules/config.rst
@@ -311,7 +311,7 @@ config_file
.. attribute:: local_data
- Local data RRs configged.
+ Local data RRs configured.
.. attribute:: remote_control_enable
diff --git a/external/unbound/pythonmod/doc/modules/env.rst b/external/unbound/pythonmod/doc/modules/env.rst
index 42dbbd1cf..eae4c73c7 100644
--- a/external/unbound/pythonmod/doc/modules/env.rst
+++ b/external/unbound/pythonmod/doc/modules/env.rst
@@ -68,7 +68,7 @@ Module event
.. data:: module_event_error
- Error occured.
+ Error occurred.
Security status
~~~~~~~~~~~~~~~~
diff --git a/external/unbound/pythonmod/doc/modules/struct.rst b/external/unbound/pythonmod/doc/modules/struct.rst
index c41e10b73..669f36d91 100644
--- a/external/unbound/pythonmod/doc/modules/struct.rst
+++ b/external/unbound/pythonmod/doc/modules/struct.rst
@@ -347,12 +347,12 @@ DNSMessage
.. method:: __init__(self, rr_name, rr_type, rr_class = RR_CLASS_IN, query_flags = 0, default_ttl = 0)
- Prepares an answer (DNS packet) from qiven information. Query flags are combination of PKT_xx contants.
+ Prepares an answer (DNS packet) from given information. Query flags are combination of PKT_xx constants.
.. method:: set_return_msg(self, qstate)
This method fills qstate return message according to the given informations.
- It takes lists of RRs in each section of answer, created necessray RRsets in wire format and store the result in :attr:`qstate.return_msg`.
+ It takes lists of RRs in each section of answer, created necessary RRsets in wire format and store the result in :attr:`qstate.return_msg`.
Returns 1 if OK.
.. attribute:: rr_name
diff --git a/external/unbound/pythonmod/doc/usecase.rst b/external/unbound/pythonmod/doc/usecase.rst
index 7a77349f1..2975740bb 100644
--- a/external/unbound/pythonmod/doc/usecase.rst
+++ b/external/unbound/pythonmod/doc/usecase.rst
@@ -9,7 +9,7 @@ Synchronized with database engine, for example *MySQL*.
Firewall control
----------------
-Control firewall (e.g. enable incomming SSH connection) with DNS query signed with private key.
+Control firewall (e.g. enable incoming SSH connection) with DNS query signed with private key.
So firewall can blocks every service during normal operation.
Scriptable DNS-based blacklist (DNS-BL_)