Skip to content

Commit

Permalink
lib/trie: updated reference to userblocklist module
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jan 14, 2021
1 parent adcceff commit db9f768
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/lib/README
Expand Up @@ -2,9 +2,9 @@ Standalone libraries:
---------------------

binrpc - A library that provides common interface for different communication
methods (UNIX sockets, TCP, UDP) using binary RPC as a transport form
of data. The interface is documented directly in binrpc_api.h file and
can by generated into HTML form by using Doxygen. There is no
methods (UNIX sockets, TCP, UDP) using binary RPC as a transport form
of data. The interface is documented directly in binrpc_api.h file and
can by generated into HTML form by using Doxygen. There is no
difference between compilation "with" or "without" SER (see compilation
section below).

Expand All @@ -30,7 +30,7 @@ shm_regex - Wrapper functions for regcomp, regexec, regfree and regerror
Used by modules: pa, rls, dialog, rpa

trie - Common digit trie implementation for prefix matching, used by
carrierroute and userblacklist
carrierroute and userblocklist

Used by IMS modules: icscf, usrloc_scscf, usrloc_pcscf, registrar_scscf, registrar_pcscf

Expand Down
4 changes: 2 additions & 2 deletions src/lib/trie/dtrie.c
Expand Up @@ -27,13 +27,13 @@
* Provides a generic trie datastructure and utility functions to
* initialize and manage individual nodes. Its optimized towards
* the usecase of a matching tree that contains only digits, e.g.
* for LCR or blacklist modules. Nevertheless it also supports the
* for LCR or blocklist modules. Nevertheless it also supports the
* matching of characters when configured correctly. For normal
* digit only matching you need to use a branches parameter of
* 10, when you use 128, the complete standard ascii charset is
* available for matching. The trie is setup in shared memory.
* - Module: \ref carrierroute
* - Module: \ref userblacklist
* - Module: \ref userblocklist
* @{
*/

Expand Down
10 changes: 5 additions & 5 deletions src/lib/trie/dtrie.h
Expand Up @@ -15,8 +15,8 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

Expand All @@ -27,14 +27,14 @@
* Provides a generic trie data structure and utility functions to
* initialize and manage individual nodes. Its optimized towards
* the usecase of a matching tree that contains only digits, e.g.
* for LCR or blacklist modules. Nevertheless it also supports the
* for LCR or blocklist modules. Nevertheless it also supports the
* matching of characters when configured correctly. For normal
* digit only matching you need to use a branches parameter of
* 10, when you use 128, the complete standard ascii charset is
* available for matching. The trie is setup in shared memory.
* - Module: \ref carrierroute
* - Module: \ref userblacklist
* @{
* - Module: \ref userblocklist
* @{
*/

#ifndef _DTRIE_H_
Expand Down

0 comments on commit db9f768

Please sign in to comment.