dnsjit.lib.trie.node - Man Page

Node of trie, which contains the value and key.

Synopsis

Set a node's value.

 node:set(42)

Get a node's key and value.

 local key = node:key()
 local val = node:get()

Description

Functions

TrieNode.new(trie, val, key, keylen)

Create a new node object.

TrieNode:key()

Return key and keylen of this node. Key is string or byte array if the trie's binary setting is set to true.

TrieNode:log()

Return the Log object to control logging of this instance or module.

TrieNode:get()

Get the value of this node.

TrieNode:set(value)

Set the value of this node.

See Also

dnsjit.lib.trie(3)

AUTHORS and CONTRIBUTORS

Jerry Lundström (DNS-OARC), Tomáš Křížek (CZ.NIC), Petr Špaček (ISC)

Maintained by DNS-OARC

Bugs

For issues and feature requests please use:

For question and help please use:

admin@dns-oarc.net

Referenced By

dnsjit.lib.trie(3), dnsjit.lib.trie.iter(3).

1.5.0 dnsjit