mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
mod_prefix is an in-memory data store optimized for fast lookups according to the longest prefix match (LPM) rule. Tables of key-value string pairs in JSON format can be loaded at startup via configuration and at runtime via the API. The implementation uses a bitwise trie (aka binary prefix tree), so arbitrary string keys are supported.
10 lines
354 B
Makefile
10 lines
354 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_prefix
|
|
|
|
mod_LTLIBRARIES = mod_prefix.la
|
|
mod_prefix_la_SOURCES = mod_prefix.c trie.c
|
|
mod_prefix_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_prefix_la_CPPFLAGS = -I. $(AM_CPPFLAGS)
|
|
mod_prefix_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_prefix_la_LDFLAGS = -avoid-version -module -no-undefined -shared
|