DatabaseNode

Holds an IP search node of the binary tree

protected
class DatabaseNode {
uint left;
uint right;
}

Constructors

this
this(ubyte[] node)

Loads the raw node data into a convenient structure

Meta