Browse Source

lib/trie: updated reference to userblocklist module

Daniel-Constantin Mierla 4 years ago
parent
commit
db9f768f18
3 changed files with 11 additions and 11 deletions
  1. 4 4
      src/lib/README
  2. 2 2
      src/lib/trie/dtrie.c
  3. 5 5
      src/lib/trie/dtrie.h

+ 4 - 4
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
 

+ 2 - 2
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
  * @{
  */
 

+ 5 - 5
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_