From db9f768f1844e3339567522bf5a1b9f2b41b0bb6 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Thu, 14 Jan 2021 08:27:36 +0100 Subject: [PATCH] lib/trie: updated reference to userblocklist module --- src/lib/README | 8 ++++---- src/lib/trie/dtrie.c | 4 ++-- src/lib/trie/dtrie.h | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/README b/src/lib/README index b490787899e..9ca4cec11ba 100644 --- a/src/lib/README +++ b/src/lib/README @@ -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). @@ -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 diff --git a/src/lib/trie/dtrie.c b/src/lib/trie/dtrie.c index af2d93f1c42..905ddead201 100644 --- a/src/lib/trie/dtrie.c +++ b/src/lib/trie/dtrie.c @@ -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 * @{ */ diff --git a/src/lib/trie/dtrie.h b/src/lib/trie/dtrie.h index fb4388122cf..179350176f3 100644 --- a/src/lib/trie/dtrie.h +++ b/src/lib/trie/dtrie.h @@ -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 */ @@ -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_