Comments
DB (sample/count)
DB (sample/privacy)
Posted by jackson
Asterisk database
Also known as AstDB; the Asterisk database uses version 1 of the Berkeley DB which works very much like the Windows registry.
From the source code of db.c:
DB3 is licensed under Sleepycat Public License and is thus incompatible with GPL. To avoid having to make another exception (and complicate licensing even further) we elect to use DB1 which is BSD licensed
Database data are grouped in families and identified with a key that is unique within the family.
Families
* cidname; used by LookupCIDName
* blacklist: used by LookupBlacklist
Posted by sagitraz