UniRec
2.9.3
|
This structure is an ordered array data structure that is used to store a dynamic set, where the keys are low and high IP addresses of prefix. Binary search compares low and high IP with the searched IP address and returns data associated with match prefix.
The prefix array can be used for storing any data (string, int). For example, it can be used to aggregate information from multiple blacklists. Data type is specific to each user and their source format (source file, delimiters, data format or data length,...), so user MUST define function load_networks()
, which load and parse information, and data about networks from any of their source and fill 'ipps_network_list'
structure.
Before using the search, call the ipps_init()
function. The function creates all necessary structures for storing and accessing the data and return structure of IPv4 and IPv6 array of prefixes with data (network context).
The parameters are:
For searching, use the function ipps_search()
. Function returns number of data associated with match prefix and return pointer to data as parameter:
For example, if blacklist contains:
192.168.1.0 192.168.1.255 ↓ ↓ <--—aaa-—> <-bbb-><-ccc->
ipps_init()
destroy_networks()
ipps_search()
ipps_destroy()
``` /**