aboutsummaryrefslogtreecommitdiff
path: root/external/unbound/pythonmod/doc/modules/functions.rst
blob: 45a469fec04ee50ee776dafb077e91ae5e3bdcf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
Scriptable functions
====================

Network
-------

.. function:: ntohs(netshort)

   This subroutine converts values between the host and network byte order. 
   Specifically, **ntohs()** converts 16-bit quantities from network byte order to host byte order.
   
   :param netshort: 16-bit short addr
   :rtype: converted addr
   
   
Cache
-----

.. function:: storeQueryInCache(qstate, qinfo, msgrep, is_referral)

   Store pending query in local cache.
   
   :param qstate: :class:`module_qstate`
   :param qinfo: :class:`query_info`
   :param msgrep: :class:`reply_info`
   :param is_referal: integer
   :rtype: boolean
   
.. function:: invalidateQueryInCache(qstate, qinfo)

   Invalidate record in local cache.

   :param qstate: :class:`module_qstate`
   :param qinfo: :class:`query_info`


Logging
-------

.. function:: verbose(level, msg)

   Log a verbose message, pass the level for this message.
   No trailing newline is needed.

   :param level: verbosity level for this message, compared to global verbosity setting.
   :param msg: string message

.. function:: log_info(msg)

   Log informational message. No trailing newline is needed.

   :param msg: string message

.. function:: log_err(msg)

   Log error message. No trailing newline is needed.

   :param msg: string message

.. function:: log_warn(msg)

   Log warning message. No trailing newline is needed.

   :param msg: string message

.. function:: log_hex(msg, data, length)

   Log a hex-string to the log. Can be any length.
   performs mallocs to do so, slow. But debug useful.

   :param msg: string desc to accompany the hexdump.
   :param data: data to dump in hex format.
   :param length: length of data.
   
.. function:: log_dns_msg(str, qinfo, reply)

   Log DNS message.
   
   :param str: string message
   :param qinfo: :class:`query_info`
   :param reply: :class:`reply_info`
   
.. function:: log_query_info(verbosity_value, str, qinf)

   Log query information.
   
   :param verbosity_value: see constants
   :param str: string message
   :param qinf: :class:`query_info`
   
.. function:: regional_log_stats(r)

   Log regional statistics.
   
   :param r: :class:`regional`

Debugging
---------

.. function:: strextstate(module_ext_state)

   Debug utility, module external qstate to string.
   
   :param module_ext_state: the state value.
   :rtype: descriptive string.

.. function:: strmodulevent(module_event)

   Debug utility, module event to string.
   
   :param module_event: the module event value.
   :rtype: descriptive string.
   
.. function:: ldns_rr_type2str(atype)

   Convert RR type to string.
   
.. function:: ldns_rr_class2str(aclass)

   Convert RR class to string.