From 57549c75ab35a7275478756767d9ec1b074e9275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 12:54:52 +0200 Subject: [PATCH 001/101] core: typos --- src/core/counters.c | 6 +++--- src/core/parser/parse_content.c | 2 +- src/core/rvalue.c | 6 +++--- src/core/socket_info.c | 4 ++-- src/core/tcp_main.c | 6 +++--- src/core/tcp_options.c | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/core/counters.c b/src/core/counters.c index f327548dac4..84bc48a3f5d 100644 --- a/src/core/counters.c +++ b/src/core/counters.c @@ -295,7 +295,7 @@ static struct grp_record* grp_hash_lookup(str* group) /** lookup a group and if not found create a new group record. - * @return pointer to grp_record on succes, 0 on failure ( not found and + * @return pointer to grp_record on success, 0 on failure ( not found and * failed to create new group record). */ static struct grp_record* grp_hash_get_create(str* group) @@ -456,7 +456,7 @@ static struct counter_record* cnt_hash_lookup(str* group, str* name) /** lookup a counter and if not found create a new counter record. - * @return pointer to counter_record on succes, 0 on failure ( not found and + * @return pointer to counter_record on success, 0 on failure ( not found and * failed to create new group record). */ static struct counter_record* cnt_hash_get_create( @@ -489,7 +489,7 @@ static struct counter_record* cnt_hash_get_create( * @param doc - description/documentation string. * @param reg_flags - register flags: 1 - don't fail if counter already * registered (act like counter_lookup(handle, group, name). - * @return 0 on succes, < 0 on error (-1 not init or malloc error, -2 already + * @return 0 on success, < 0 on error (-1 not init or malloc error, -2 already * registered (and register_flags & 1 == 0). */ int counter_register( counter_handle_t* handle, const char* group, diff --git a/src/core/parser/parse_content.c b/src/core/parser/parse_content.c index aff70f86609..bd2f535e7b7 100644 --- a/src/core/parser/parse_content.c +++ b/src/core/parser/parse_content.c @@ -374,7 +374,7 @@ char* decode_mime_type(char* const start, const char* const end, *mime_type |= type_candidate;; } - /* now its possible to have some spaces */ + /* now it is possible to have some spaces */ while ( p the receive + receive_fd returned less than requested => the receive buffer is empty => no more io queued on this fd */ goto end; } @@ -3883,7 +3883,7 @@ inline static int handle_ser_child(struct process_table* p, int fd_i) /* should never happen */ LM_CRIT("too few bytes received (%d)\n", bytes ); ret=0; /* something was read so there is no error; otoh if - receive_fd returned less then requested => the receive + receive_fd returned less than requested => the receive buffer is empty => no more io queued on this fd */ goto end; } @@ -4416,7 +4416,7 @@ static inline int handle_new_connect(struct socket_info* si) * params: tcpconn - pointer to the tcp_connection for which we have an io ev. * fd_i - index in the fd_array table (needed for delete) * returns: handle_* return convention, but on success it always returns 0 - * (because it's one-shot, after a succesful execution the fd is + * (because it's one-shot, after a successful execution the fd is * removed from tcp_main's watch fd list and passed to a child => * tcp_main is not interested in further io events that might be * queued for this fd) diff --git a/src/core/tcp_options.c b/src/core/tcp_options.c index 211bcfb1e94..40b9af102b2 100644 --- a/src/core/tcp_options.c +++ b/src/core/tcp_options.c @@ -393,7 +393,7 @@ void tcp_options_get(struct cfg_group_tcp* t) /** register tcp config into the configuration framework. - * @return 0 on succes, -1 on error*/ + * @return 0 on success, -1 on error*/ int tcp_register_cfg() { if (cfg_declare("tcp", tcp_cfg_def, &tcp_default_cfg, cfg_sizeof(tcp), From 882ec6fa64ffb75a866a31dd9279f4e7cdd4106a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 06:54:57 +0200 Subject: [PATCH 002/101] lib/cds: typo asSigned --- src/lib/cds/ref_cntr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cds/ref_cntr.h b/src/lib/cds/ref_cntr.h index c1adf67328e..e217ce1d0ba 100644 --- a/src/lib/cds/ref_cntr.h +++ b/src/lib/cds/ref_cntr.h @@ -93,7 +93,7 @@ extern "C" { /** Structure holding reference counter value. */ typedef struct { int cntr; /**< counter value */ - cds_mutex_t *mutex; /**< mutex asigned to this reference counter */ + cds_mutex_t *mutex; /**< mutex assigned to this reference counter */ } reference_counter_data_t; /** Structure holding information about group of reference counters. From 17bf57fa357c80321e4c892a61aa2f4fd2740a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sun, 18 Dec 2022 10:41:21 +0200 Subject: [PATCH 003/101] lib/ims: typos succesS --- src/lib/ims/ims_getters.c | 6 +++--- src/lib/ims/ims_getters.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/ims/ims_getters.c b/src/lib/ims/ims_getters.c index 26fdbb8c418..1e47e20e3da 100644 --- a/src/lib/ims/ims_getters.c +++ b/src/lib/ims/ims_getters.c @@ -872,7 +872,7 @@ str cscf_get_visited_network_id(struct sip_msg *msg, struct hdr_field **h) * Adds a header to the message as the first one in the message * @param msg - the message to add a header to * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header_first(struct sip_msg *msg, str *hdr,int type) { @@ -1036,7 +1036,7 @@ str cscf_get_authenticate(struct sip_msg *msg,struct hdr_field **h) * Adds a header to the message * @param msg - the message to add a header to * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header(struct sip_msg *msg, str *hdr,int type) { @@ -1678,7 +1678,7 @@ str cscf_get_contact(struct sip_msg *msg) * Adds a header to the reply message * @param msg - the request to add a header to its reply * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header_rpl(struct sip_msg *msg, str *hdr) { diff --git a/src/lib/ims/ims_getters.h b/src/lib/ims/ims_getters.h index 972014e1aed..1ea36b3e241 100644 --- a/src/lib/ims/ims_getters.h +++ b/src/lib/ims/ims_getters.h @@ -227,7 +227,7 @@ str cscf_get_visited_network_id(struct sip_msg *msg, struct hdr_field **h); * Adds a header to the message as the first one in the message * @param msg - the message to add a header to * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header_first(struct sip_msg *msg, str *hdr, int type); @@ -270,7 +270,7 @@ str cscf_get_authenticate(struct sip_msg *msg, struct hdr_field **h); * Adds a header to the message * @param msg - the message to add a header to * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header(struct sip_msg *msg, str *hdr, int type); /** @@ -432,7 +432,7 @@ str cscf_get_contact(struct sip_msg *msg); * Adds a header to the reply message * @param msg - the request to add a header to its reply * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int cscf_add_header_rpl(struct sip_msg *msg, str *hdr); From 718b19921e76de781953e9e40abdc5bc8eb57b19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:23:38 +0200 Subject: [PATCH 004/101] lib/srdb1: add missing spaces --- src/lib/srdb1/schema/uacreg.xml | 2 +- src/lib/srdb1/schema/uid_credentials.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/srdb1/schema/uacreg.xml b/src/lib/srdb1/schema/uacreg.xml index d4f5b89b504..ff564800477 100644 --- a/src/lib/srdb1/schema/uacreg.xml +++ b/src/lib/srdb1/schema/uacreg.xml @@ -140,7 +140,7 @@ string &contact_addr_len; - Used contact_addr in contact header for sending out requests,if not passed reg_contact_addr will be used instead + Used contact_addr in contact header for sending out requests, if not passed reg_contact_addr will be used instead diff --git a/src/lib/srdb1/schema/uid_credentials.xml b/src/lib/srdb1/schema/uid_credentials.xml index d0089693e02..ba481bdbffe 100644 --- a/src/lib/srdb1/schema/uid_credentials.xml +++ b/src/lib/srdb1/schema/uid_credentials.xml @@ -218,7 +218,7 @@ For digest authentication only. This is the H(A1) value calculated as per RFC2617. The value contains an MD5 hash of string concatenated from - username,realm, and password: MD5(username:realm:password). + username, realm, and password: MD5(username:realm:password). From 980e4beee6b958c32841eb0ecc5c7d42fef60f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:52:24 +0200 Subject: [PATCH 005/101] doc/tutorials: typos --- doc/tutorials/rpc_list/docbook/rpc_core.xml | 2 +- doc/tutorials/rpc_list/docbook/rpc_malloc_test.xml | 12 ++++++------ doc/tutorials/rpc_list/rpc_malloc_test.txt | 2 +- doc/tutorials/serdev/modiface.xml | 2 +- doc/tutorials/serdev/module_exports.xml | 4 ++-- doc/tutorials/serdev/routing_engine.xml | 2 +- doc/tutorials/serdev/startup.xml | 2 +- doc/tutorials/seruser/db_fifo.xml | 2 +- doc/tutorials/sip/sip_introduction.xml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/tutorials/rpc_list/docbook/rpc_core.xml b/doc/tutorials/rpc_list/docbook/rpc_core.xml index 0899be297b0..ada88565291 100644 --- a/doc/tutorials/rpc_list/docbook/rpc_core.xml +++ b/doc/tutorials/rpc_list/docbook/rpc_core.xml @@ -79,7 +79,7 @@ RPC Exports for core
core.info Verbose info, including version number, compile flags, - compiler,repository hash a.s.o. + compiler, repository hash a.s.o. diff --git a/doc/tutorials/rpc_list/docbook/rpc_malloc_test.xml b/doc/tutorials/rpc_list/docbook/rpc_malloc_test.xml index 1073113ff27..b7c803085d5 100644 --- a/doc/tutorials/rpc_list/docbook/rpc_malloc_test.xml +++ b/doc/tutorials/rpc_list/docbook/rpc_malloc_test.xml @@ -11,7 +11,7 @@ RPC Exports for malloc_test
mt.mem_alloc Allocates the specified number of bytes (debugging/test - function).Use b|k|m|g to specify the desired size unit + function). Use b|k|m|g to specify the desired size unit @@ -22,7 +22,7 @@ RPC Exports for malloc_test Frees the specified number of bytes, previously allocated by one of the other malloc_test functions (e.g. mt.mem_alloc or the script mt_mem_alloc). Use b|k|m|g to specify the desired - size unit.Returns the number of bytes freed (can be higher or + size unit. Returns the number of bytes freed (can be higher or smaller then the requested size) @@ -36,7 +36,7 @@ RPC Exports for malloc_test chunks exists, it will fail. Make sure mt.mem_used is non 0 or call mt.mem_alloc prior to calling this function. Returns the difference in bytes (<0 if bytes were freed, >0 if more - bytes were allocated).Use b|k|m|g to specify the desired size + bytes were allocated). Use b|k|m|g to specify the desired size unit @@ -57,7 +57,7 @@ RPC Exports for malloc_test Takes 4 parameters: min, max, total_size and an optional unit (b|k|m|g). It will allocate total_size memory, in pieces of - random size betweenmin .. max (inclusive). + random size between min .. max (inclusive). @@ -71,7 +71,7 @@ RPC Exports for malloc_test for test_time ms. At a random interval between min_interval and max_interval ms. it will allocate a memory chunk with random size, between min and max. Each time total_size is reached, it - will free all the memory allocated and start again.Returns the + will free all the memory allocated and start again. Returns the test id (integer) @@ -81,7 +81,7 @@ RPC Exports for malloc_test
mt.mem_test_stop Takes 1 parameter: the test id. It will stop the corresponding - test.Note: the test is stopped, but not destroyed. + test. Note: the test is stopped, but not destroyed. diff --git a/doc/tutorials/rpc_list/rpc_malloc_test.txt b/doc/tutorials/rpc_list/rpc_malloc_test.txt index 3fd6a8bc472..86cad8da05a 100644 --- a/doc/tutorials/rpc_list/rpc_malloc_test.txt +++ b/doc/tutorials/rpc_list/rpc_malloc_test.txt @@ -31,7 +31,7 @@ RPC Exports for malloc_test 5. mt.mem_rnd_alloc Takes 4 parameters: min, max, total_size and an optional unit (b|k|m|g). It will allocate total_size memory, in pieces of - random size betweenmin .. max (inclusive). + random size between min .. max (inclusive). 6. mt.mem_test_start Takes 7 parameters: min, max, total_size, min_interval, diff --git a/doc/tutorials/serdev/modiface.xml b/doc/tutorials/serdev/modiface.xml index 35008609d2f..66cdb1b1780 100644 --- a/doc/tutorials/serdev/modiface.xml +++ b/doc/tutorials/serdev/modiface.xml @@ -527,7 +527,7 @@ struct module_exports exports = { As the next step, list of all previously loaded modules will be searched for the same module. If such module is found, it means, that user is trying - to load the same module twice. In such case an + to load the same module twice. In such case a warning will be issued and server will abort. diff --git a/doc/tutorials/serdev/module_exports.xml b/doc/tutorials/serdev/module_exports.xml index 819cca8afc7..fd8e6aacb11 100644 --- a/doc/tutorials/serdev/module_exports.xml +++ b/doc/tutorials/serdev/module_exports.xml @@ -35,7 +35,7 @@ struct module_exports{ char* name; /* null terminated module name */ char** cmd_names; /* cmd names registered - * by this modules */ + * by this module */ cmd_function* cmd_pointers; /* pointers to the * corresponding functions */ int* param_no; /* number of parameters used by @@ -48,7 +48,7 @@ struct module_exports{ * (size of cmd_{names,pointers} */ char** param_names; /* parameter names registered - * by this modules */ + * by this module */ modparam_t* param_types; /* Type of parameters */ void** param_pointers; /* Pointers to the corresponding * memory locations */ diff --git a/doc/tutorials/serdev/routing_engine.xml b/doc/tutorials/serdev/routing_engine.xml index fd406efdfc3..a3c417f2b59 100644 --- a/doc/tutorials/serdev/routing_engine.xml +++ b/doc/tutorials/serdev/routing_engine.xml @@ -29,7 +29,7 @@ The routing engine can be found in file action.c. - The main function is run_actions. The function + The main function is run_actions. The function accepts two parameters. The first parameter is list of actions to be processed (Remember, the config file gets translated into array of linked lists. Each linked list in the array represents one "route" part diff --git a/doc/tutorials/serdev/startup.xml b/doc/tutorials/serdev/startup.xml index 1d1c77d52bf..128d9291032 100644 --- a/doc/tutorials/serdev/startup.xml +++ b/doc/tutorials/serdev/startup.xml @@ -703,7 +703,7 @@ module_stm = "loadmodule" STRING - Call init_child(0). The function + Call init_child(0). The function performs per-child specific initialization of all loaded modules. A module can be initialized though mod_init function. The function diff --git a/doc/tutorials/seruser/db_fifo.xml b/doc/tutorials/seruser/db_fifo.xml index 084a343bba6..333e7161f2a 100644 --- a/doc/tutorials/seruser/db_fifo.xml +++ b/doc/tutorials/seruser/db_fifo.xml @@ -216,7 +216,7 @@ TABLE_NAME This function sends a raw query directly to the database driver without trying to understand the command. This command MUST - NOT generate any response.Otherwise, the database driver + NOT generate any response. Otherwise, the database driver can block or desynchronize (depending of the driver). Its syntax is: diff --git a/doc/tutorials/sip/sip_introduction.xml b/doc/tutorials/sip/sip_introduction.xml index ec19fa8e653..7d47de9c112 100644 --- a/doc/tutorials/sip/sip_introduction.xml +++ b/doc/tutorials/sip/sip_introduction.xml @@ -868,7 +868,7 @@ Warning: 392 195.37.77.101:5060 "Noisy feedback tells: Session Termination Session termination is accomplished by sending a BYE request within dialog - established bye INVITE. BYE messages are sent directly from one user agent to + established by INVITE. BYE messages are sent directly from one user agent to the other unless a proxy on the path of the INVITE request indicated that it wishes to stay on the path by using record routing (see . @@ -938,7 +938,7 @@ Warning: 392 195.37.77.101:5060 "Noisy feedback tells: little bit different way. The Request-URI is no more overwritten, it always contains URI of the destination user agent. If there are any Route header field in a message, than the message is sent to the URI from the topmost - Route header field. This is significant change--Request-URI doesn't + Route header field. This is a significant change--Request-URI doesn't necessarily contain URI to which the request will be sent. In fact, loose routing is very similar to IP source routing. From e9a82431a404ea3d25df18acbcbce7b88bf2aaef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 12:56:52 +0200 Subject: [PATCH 006/101] misc/examples: update comments --- misc/examples/kamailio/acc.cfg | 2 +- misc/examples/mixed/acc.cfg | 2 +- misc/examples/mixed/uas.cfg | 2 +- misc/examples/obsoleted/backup.cfg | 2 +- misc/examples/obsoleted/test.cfg | 2 +- misc/examples/obsoleted/tmtest.cfg | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/examples/kamailio/acc.cfg b/misc/examples/kamailio/acc.cfg index bca66a40cff..831d701aacb 100644 --- a/misc/examples/kamailio/acc.cfg +++ b/misc/examples/kamailio/acc.cfg @@ -59,7 +59,7 @@ route{ # record-route INVITES to make sure BYEs will visit our server too if (method=="INVITE") record_route(); - # forward the request statefuly now; (we need *stateful* forwarding, + # forward the request statefully now; (we need *stateful* forwarding, # because the stateful mode correlates requests with replies and # drops retranmissions; otherwise, we would have to report on # every single message received) diff --git a/misc/examples/mixed/acc.cfg b/misc/examples/mixed/acc.cfg index b5a189b6b4d..8f28543466c 100644 --- a/misc/examples/mixed/acc.cfg +++ b/misc/examples/mixed/acc.cfg @@ -50,7 +50,7 @@ route{ # record-route INVITES to make sure BYEs will visit our server too if (method=="INVITE") record_route(); - # forward the request statefuly now; (we need *stateful* forwarding, + # forward the request statefully now; (we need *stateful* forwarding, # because the stateful mode correlates requests with replies and # drops retranmissions; otherwise, we would have to report on # every single message received) diff --git a/misc/examples/mixed/uas.cfg b/misc/examples/mixed/uas.cfg index a4c05e13e1e..a2ade9a8d99 100644 --- a/misc/examples/mixed/uas.cfg +++ b/misc/examples/mixed/uas.cfg @@ -4,7 +4,7 @@ # this example shows usage of ser as user agent # server which does some functionality (in this # example, 'log' is used to print a notification -# on a new transaction) and behaves statefuly +# on a new transaction) and behaves statefully # (e.g., it retransmits replies on request # retransmissions) diff --git a/misc/examples/obsoleted/backup.cfg b/misc/examples/obsoleted/backup.cfg index 23eee18f8a9..859c9b45c06 100644 --- a/misc/examples/obsoleted/backup.cfg +++ b/misc/examples/obsoleted/backup.cfg @@ -92,7 +92,7 @@ modparam("acc", "log_level", 1) # that is the flag for which we will account -- don't forget to # set the same one :-) modparam("acc", "acc_flag", 1 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions modparam("acc", "failed_transactions", 0 ) # -- tm params -- diff --git a/misc/examples/obsoleted/test.cfg b/misc/examples/obsoleted/test.cfg index 2b9023ff041..6911c0e8e68 100644 --- a/misc/examples/obsoleted/test.cfg +++ b/misc/examples/obsoleted/test.cfg @@ -82,7 +82,7 @@ modparam("acc", "log_level", 1) # that is the flag for which we will account -- don't forget to # set the same one :-) modparam("acc", "acc_flag", 1 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions modparam("acc", "failed_transactions", 0 ) # -- tm params -- diff --git a/misc/examples/obsoleted/tmtest.cfg b/misc/examples/obsoleted/tmtest.cfg index 107dfe10cad..0cb9179be28 100644 --- a/misc/examples/obsoleted/tmtest.cfg +++ b/misc/examples/obsoleted/tmtest.cfg @@ -56,7 +56,7 @@ modparam("acc", "log_level", 1) # that is the flag for which we will account -- don't forget to # set the same one :-) modparam("acc", "acc_flag", 3 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions modparam("acc", "failed_transactions", 0 ) # -- tm params -- From a278fce79a2dc44744cdb89de2f9c2d10038b32e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:38:35 +0200 Subject: [PATCH 007/101] acc: typo fuNction --- src/modules/acc/acc_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/acc/acc_api.h b/src/modules/acc/acc_api.h index 04b893483b7..6bd056b0e0e 100644 --- a/src/modules/acc/acc_api.h +++ b/src/modules/acc/acc_api.h @@ -79,7 +79,7 @@ typedef int (*legs2strar_f)( struct acc_extra *legs, struct sip_msg *rq, str *va int *int_arr, char *type_arr, int start); typedef acc_extra_t* (*leg_info_f)(void); -/* cdr related fuctions */ +/* cdr related functions */ typedef int (*cdr_core2strar_f)( struct dlg_cell* dlg, str* values, int* unused, char* types); typedef int (*extra2strar_dlg_only_f)(struct acc_extra *extra, struct dlg_cell* dlg, str *val_arr, From 049bbeaef28ebc84d23ae4e076605dde0ad25c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:27:03 +0200 Subject: [PATCH 008/101] =?UTF-8?q?acc=5Fdiameter:=20typo=20-=20build=20?= =?UTF-8?q?=E2=86=92=20built?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/acc_diameter/diam_message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/acc_diameter/diam_message.c b/src/modules/acc_diameter/diam_message.c index 07b94130468..098b51e9066 100644 --- a/src/modules/acc_diameter/diam_message.c +++ b/src/modules/acc_diameter/diam_message.c @@ -54,7 +54,7 @@ ( (_len_)+(((_len_)&3)?4-((_len_)&3):0) ) -/*! \brief from an AAAMessage structure, a buffer to be sent is build +/*! \brief from an AAAMessage structure, a buffer to be sent is built */ AAAReturnCode AAABuildMsgBuffer( AAAMessage *msg ) { From 759493458d116af21905db56eaf4eaa047bd679f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:09:38 +0200 Subject: [PATCH 009/101] alias_db: space after comma --- src/modules/alias_db/doc/alias_db_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/alias_db/doc/alias_db_admin.xml b/src/modules/alias_db/doc/alias_db_admin.xml index f50318fb50e..068b233feb7 100644 --- a/src/modules/alias_db/doc/alias_db_admin.xml +++ b/src/modules/alias_db/doc/alias_db_admin.xml @@ -233,7 +233,7 @@ modparam("alias_db", "append_branches", 1) Functions
- <function moreinfo="none">alias_db_lookup(table_name [,flags])</function> + <function moreinfo="none">alias_db_lookup(table_name[, flags])</function> The function takes the R-URI and search to see whether it is an alias @@ -292,7 +292,7 @@ alias_db_lookup("dba_$(rU{s.substr,0,1})");
- <function moreinfo="none">alias_db_find( table_name , input, output [,flags] )</function> + <function moreinfo="none">alias_db_find(table_name, input, output[, flags])</function> The function is very similar to alias_db_lookup(), From 6bbe1deda3ac095c5570178bba5b9ccc490ae0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:31:40 +0200 Subject: [PATCH 010/101] app_lua: typo --- src/modules/app_lua/app_lua_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/app_lua/app_lua_api.c b/src/modules/app_lua/app_lua_api.c index d57e14f0d1f..b808d229d5a 100644 --- a/src/modules/app_lua/app_lua_api.c +++ b/src/modules/app_lua/app_lua_api.c @@ -449,7 +449,7 @@ int lua_sr_list_script(sr_lua_load_t **list) /** * Mark script in pos to be reloaded - * pos -1: reload all scritps + * pos -1: reload all scripts */ int lua_sr_reload_script(int pos) { From 84d458f52cc9adb1d44fbb3b868e84c3badc7397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:52:43 +0200 Subject: [PATCH 011/101] app_perl: typos --- src/modules/app_perl/doc/app_perl_pod.xml | 2 +- .../app_perl/lib/perl/Kamailio/LDAPUtils/LDAPConnection.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/app_perl/doc/app_perl_pod.xml b/src/modules/app_perl/doc/app_perl_pod.xml index 57926359651..0692b48fb3c 100644 --- a/src/modules/app_perl/doc/app_perl_pod.xml +++ b/src/modules/app_perl/doc/app_perl_pod.xml @@ -689,7 +689,7 @@ my @rows = $ldap->search( The first argument, when given, should be a hash reference pointing - to to the connection parameters, possibly an object. This argument may be in which case a new diff --git a/src/modules/app_perl/lib/perl/Kamailio/LDAPUtils/LDAPConnection.pm b/src/modules/app_perl/lib/perl/Kamailio/LDAPUtils/LDAPConnection.pm index 3b6509aa4cc..65352ba513a 100644 --- a/src/modules/app_perl/lib/perl/Kamailio/LDAPUtils/LDAPConnection.pm +++ b/src/modules/app_perl/lib/perl/Kamailio/LDAPUtils/LDAPConnection.pm @@ -134,7 +134,7 @@ sub ldap { return $_[0]->{'ldap'}; } perform an ldap search, return the dn of the first matching directory entry, unless a specific attribute has been requested, -in wich case the values(s) fot this attribute are returned. +in which case the values(s) fot this attribute are returned. When the first argument (conf) is a C, it will be used to perform the queries. You can pass the first argument From e5f5962cf677bd01a07329110439de548f9c72cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:10:47 +0200 Subject: [PATCH 012/101] =?UTF-8?q?app=5Fsqlang:=20typo=20dor=20=E2=86=92?= =?UTF-8?q?=20does?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/app_sqlang/doc/app_sqlang_admin.xml | 2 +- src/modules/app_sqlang/squirrel/squirrel/sqcompiler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/app_sqlang/doc/app_sqlang_admin.xml b/src/modules/app_sqlang/doc/app_sqlang_admin.xml index 83ac5ed5e35..0df4e09d8a4 100644 --- a/src/modules/app_sqlang/doc/app_sqlang_admin.xml +++ b/src/modules/app_sqlang/doc/app_sqlang_admin.xml @@ -213,7 +213,7 @@ if(!sqlang_runstring('KSR.dbg("Hello World from $fU\n")')) Marks the need to reload the SQLang script pointed by 'load' - parameter.The actual reload is done by every working process when + parameter. The actual reload is done by every working process when the next call to sqlang_run() function or KEMI config is executed. diff --git a/src/modules/app_sqlang/squirrel/squirrel/sqcompiler.cpp b/src/modules/app_sqlang/squirrel/squirrel/sqcompiler.cpp index 5e891b260f9..3e2144bfbcc 100644 --- a/src/modules/app_sqlang/squirrel/squirrel/sqcompiler.cpp +++ b/src/modules/app_sqlang/squirrel/squirrel/sqcompiler.cpp @@ -662,7 +662,7 @@ class SQCompiler case EXPR: Error(_SC("can't '++' or '--' an expression")); break; case OBJECT: case BASE: - if(_es.donot_get == true) { Error(_SC("can't '++' or '--' an expression")); break; } //mmh dor this make sense? + if(_es.donot_get == true) { Error(_SC("can't '++' or '--' an expression")); break; } //mmh does this make sense? Emit2ArgsOP(_OP_PINC, diff); break; case LOCAL: { From ed196f23ef24a42308ab0dc48c7c56c63e60df95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:24:41 +0200 Subject: [PATCH 013/101] auth: typo statefulLy --- src/modules/auth/auth.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth/auth.xml b/src/modules/auth/auth.xml index 1470f7c9d92..949c3c73e0a 100644 --- a/src/modules/auth/auth.xml +++ b/src/modules/auth/auth.xml @@ -329,7 +329,7 @@ mode, ie., a transaction should be created prior to the authentication check, for instance by using the function t_newtran, to absorb possible - retransmissions. All the replies need to be sent statefuly, + retransmissions. All the replies need to be sent statefully, using t_reply()). Otherwise, all retransmissions will be challenged which may cause the user agent to believe the password supplied by the user to be wrong. From 08972c5631d70a844dfc6d9cace243f18f07df46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:27:45 +0200 Subject: [PATCH 014/101] =?UTF-8?q?auth=5Fdiameter:=20typo=20-=20build=20?= =?UTF-8?q?=E2=86=92=20built?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/auth_diameter/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth_diameter/message.c b/src/modules/auth_diameter/message.c index ccc08818b44..47f0738cacc 100644 --- a/src/modules/auth_diameter/message.c +++ b/src/modules/auth_diameter/message.c @@ -49,7 +49,7 @@ ( (_len_)+(((_len_)&3)?4-((_len_)&3):0) ) -/* from an AAAMessage structure, a buffer to be sent is build +/* from an AAAMessage structure, a buffer to be sent is built */ AAAReturnCode AAABuildMsgBuffer( AAAMessage *msg ) { From 86d0f18e43d90772008309b2b147c930ed578b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:53:52 +0200 Subject: [PATCH 015/101] avp: space after comma --- src/modules/avp/doc/avp_functions.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/avp/doc/avp_functions.xml b/src/modules/avp/doc/avp_functions.xml index fbf1d69b0e1..e3336a11887 100644 --- a/src/modules/avp/doc/avp_functions.xml +++ b/src/modules/avp/doc/avp_functions.xml @@ -15,7 +15,7 @@ Functions
- <function>set_iattr(attribute,value)</function> + <function>set_iattr(attribute, value)</function> Create an AVP of type integer. @@ -60,7 +60,7 @@ flags2attr("$msg_flags")
- <function>set_sattr(attribute,value)</function> + <function>set_sattr(attribute, value)</function> Create an AVP of type string. @@ -102,7 +102,7 @@ set_sattr("called_number", "1234")
- <function>attr2uri($attribute[,uri-part])</function> + <function>attr2uri($attribute[, uri-part])</function> Rewrite the whole Request-URI of the message being processed with the value of an AVP, or if an uri-part is specified, From 02f7faf1f3cb458b0d5ccdf2729d4f11c2e82847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:29:15 +0200 Subject: [PATCH 016/101] avpops: typo singular/plural --- src/modules/avpops/doc/avpops_admin.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/modules/avpops/doc/avpops_admin.xml b/src/modules/avpops/doc/avpops_admin.xml index 8c87de058de..4892a638704 100644 --- a/src/modules/avpops/doc/avpops_admin.xml +++ b/src/modules/avpops/doc/avpops_admin.xml @@ -23,7 +23,7 @@ preferences) and pseudo-variables. AVPs are a powerful tool for implementing services/preferences per user/domain. With this module, they are usable directly from configuration script. - The module implement functions for + The module implements functions for interfacing DB resources (loading/storing/removing), functions for swapping information between AVPs and SIP messages and a function for testing/checking the value of an AVP. @@ -377,7 +377,7 @@ modparam("avpops","db_scheme", Functions
- <function moreinfo="none">avp_db_load(source,name) + <function moreinfo="none">avp_db_load(source, name) </function> @@ -447,7 +447,7 @@ avp_db_load("$ru","$avp(i1:123)/$some_scheme");
- <function moreinfo="none">avp_db_store(source,name)</function> + <function moreinfo="none">avp_db_store(source, name)</function> Stores to DB the AVPs corresponding to the given @@ -474,7 +474,7 @@ avp_db_store("$ru/username","$avp(email)");
- <function moreinfo="none">avp_db_delete(source,name)</function> + <function moreinfo="none">avp_db_delete(source, name)</function> Deletes from DB the AVPs corresponding to the given @@ -501,7 +501,7 @@ avp_db_delete("$uuid","$avp(s:404fwd)/fwd_table");
- <function moreinfo="none">avp_db_query(query[,dest])</function> + <function moreinfo="none">avp_db_query(query[, dest])</function> Make a database query and store the result in AVPs. @@ -614,7 +614,7 @@ avp_delete("a3");
- <function moreinfo="none">avp_pushto(destination,name) + <function moreinfo="none">avp_pushto(destination, name) </function> @@ -680,7 +680,7 @@ avp_pushto("$br","$avp(i:680)");
- <function moreinfo="none">avp_check(name,op_value) + <function moreinfo="none">avp_check(name, op_value) </function> @@ -791,7 +791,7 @@ avp_check("$xavp(op=>foo[*])","fm/$xavp(op=>fm[$var(id)])/g");
- <function moreinfo="none">avp_copy(old_name,new_name) + <function moreinfo="none">avp_copy(old_name, new_name) </function> @@ -1003,7 +1003,7 @@ avp_subst_pv("$avp(src)", "$var(x)");
- <function moreinfo="none">avp_op(name,op_value) + <function moreinfo="none">avp_op(name, op_value) </function> From 575ab62570a11ac3f972ff2f97fdca6cfa76ac1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:29:29 +0200 Subject: [PATCH 017/101] carrierroute: missing space --- src/modules/carrierroute/doc/carrierroute_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/carrierroute/doc/carrierroute_admin.xml b/src/modules/carrierroute/doc/carrierroute_admin.xml index 4b531affbaa..018a2c3dee5 100644 --- a/src/modules/carrierroute/doc/carrierroute_admin.xml +++ b/src/modules/carrierroute/doc/carrierroute_admin.xml @@ -921,7 +921,7 @@ domain register { there will be no further forwarding, because next_domain is empty. In the second and third routes are certain gateway errors matched, if this errors have occurred, then the next domain will be chosen. Note that the reply_code must be - 3 characters wide, and only the "." character is accepted as wildcard.The last route + 3 characters wide, and only the "." character is accepted as wildcard. The last route does forwarding according some flags, e.g. the customer came from a certain carrier, and has call-forwarding deactivated. In order to use the routing that is specified above, a matching carrierroute table must be provided, that holds From a6cb9f61e77004476b87f7a21bf5e4af94f3a281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:47:26 +0200 Subject: [PATCH 018/101] cdp: typo --- src/modules/cdp/cdp_mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/cdp/cdp_mod.c b/src/modules/cdp/cdp_mod.c index 6894b55ef19..d0c968c0681 100644 --- a/src/modules/cdp/cdp_mod.c +++ b/src/modules/cdp/cdp_mod.c @@ -106,7 +106,7 @@ static int w_cdp_has_app(sip_msg_t *msg, char *appid, char *param); * - AAAGroupAVPS() - group a #AAA_AVP_LIST of #AAA_AVP into a grouped #AAA_AVP * - AAAUngroupAVPS() - ungroup a grouped #AAA_AVP into a #AAA_AVP_LIST of #AAA_AVP * - AAAFindMatchingAVPList() - find an #AAA_AVP inside a #AAA_AVP_LIST - * - AAAFreeAVPList() - free the memory taken by the all members of #AAA_AVP_LIST + * - AAAFreeAVPList() - free the memory taken by all the members of #AAA_AVP_LIST *

* - AAAAddRequestHandler() - add a #AAARequestHandler_f callback to request being received * - AAAAddResponseHandler() - add a #AAAResponseHandler_f callback to responses being received From 7765a92d919c4ba88b29372139aec7464102df4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:47:40 +0200 Subject: [PATCH 019/101] cfgutils: typo --- src/modules/cfgutils/doc/cfgutils_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/cfgutils/doc/cfgutils_admin.xml b/src/modules/cfgutils/doc/cfgutils_admin.xml index 63b069fd638..23afd740535 100644 --- a/src/modules/cfgutils/doc/cfgutils_admin.xml +++ b/src/modules/cfgutils/doc/cfgutils_admin.xml @@ -787,7 +787,7 @@ $ &kamcmd; cfgutils.reset_gflag 1

<function moreinfo="none">cfgutils.is_gflag</function> - Returns true if the all the flags from the bitmask are set. + Returns true if all the flags from the bitmask are set. The parameter value must be a bitmask in decimal or hexadecimal format. From 2a3132f18075bda1164ccbbad28eaa8a02ebed14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 22:39:28 +0200 Subject: [PATCH 020/101] corex: typo --- src/modules/corex/corex_nio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/corex/corex_nio.c b/src/modules/corex/corex_nio.c index 2e5cdff449c..6fbdfe80cc7 100644 --- a/src/modules/corex/corex_nio.c +++ b/src/modules/corex/corex_nio.c @@ -52,7 +52,7 @@ int nio_intercept_init(void) if (nio_min_msg_len < 0) { - LM_WARN("min_msg_len is less then zero, setting it to zero"); + LM_WARN("min_msg_len is less than zero, setting it to zero"); nio_min_msg_len = 0; } From 82050ee69b0c2920b80ed268efee469c5124d101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:15:28 +0200 Subject: [PATCH 021/101] cplc: typos --- src/modules/cplc/cpl_proxy.h | 2 +- src/modules/cplc/doc/cplc_admin.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/cplc/cpl_proxy.h b/src/modules/cplc/cpl_proxy.h index 54271a2d43b..cedcdbf7019 100644 --- a/src/modules/cplc/cpl_proxy.h +++ b/src/modules/cplc/cpl_proxy.h @@ -104,7 +104,7 @@ static inline int add_contacts_to_loc_set(struct sip_msg* msg, } } - /* extract from contact header the all the addresses */ + /* extract from contact header all the addresses */ if (parse_contact( msg->contact )!=0) { LM_ERR("unable to parse Contact hdr!\n"); goto error; diff --git a/src/modules/cplc/doc/cplc_admin.xml b/src/modules/cplc/doc/cplc_admin.xml index 507804ce1a4..403c71238ae 100644 --- a/src/modules/cplc/doc/cplc_admin.xml +++ b/src/modules/cplc/doc/cplc_admin.xml @@ -486,7 +486,7 @@ modparam("cplc","ignore3xx",1) Functions
- <function moreinfo="none">cpl_run_script(type,mode, [uri])</function> + <function moreinfo="none">cpl_run_script(type, mode[, uri])</function> Starts the execution of the CPL script. The user name is @@ -535,7 +535,7 @@ modparam("cplc","ignore3xx",1) IS_STATEFUL - the current INVITE has already a transaction associated. All signaling operations - (replies or proxy) will be done in stateful way.So, if + (replies or proxy) will be done in stateful way. So, if the function returns, will be in stateful mode. From 3969dc05501498facd64e157e58e61d0af1763cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:15:42 +0200 Subject: [PATCH 022/101] ctl: typos --- src/modules/ctl/binrpc.h | 2 +- src/modules/ctl/fifo_server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ctl/binrpc.h b/src/modules/ctl/binrpc.h index 94ced22ea25..7d77ce6568f 100644 --- a/src/modules/ctl/binrpc.h +++ b/src/modules/ctl/binrpc.h @@ -912,7 +912,7 @@ inline static unsigned char* binrpc_read_struct(struct binrpc_parse_ctx* ctx, p+=len; /* len should be 0 for a struct tag */ in_struct=1; v->type=type; - v->u.strval.s=(char*)p; /* it will conain the inside of the struc */ + v->u.strval.s=(char*)p; /* it will contain the inside of the struc */ while(in_struct){ /* read name */ type=*p & 0xf; diff --git a/src/modules/ctl/fifo_server.c b/src/modules/ctl/fifo_server.c index 50507dd03b6..9a0949cfe74 100644 --- a/src/modules/ctl/fifo_server.c +++ b/src/modules/ctl/fifo_server.c @@ -171,7 +171,7 @@ int fifo_reply_retries = DEFAULT_REPLY_RETRIES; int fifo_reply_wait = DEFAULT_REPLY_WAIT; -static rpc_t func_param; /* Pointers to implementation of RPC funtions */ +static rpc_t func_param; /* Pointers to implementation of RPC functions */ static int rpc_send (rpc_ctx_t* ctx); /* Send the reply to the client */ static void rpc_fault (rpc_ctx_t* ctx, int code, char* fmt, ...); /* Signal a failure to the client */ From 0714b1497820eb18e52edfef1d857cd91ab741d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:30:13 +0200 Subject: [PATCH 023/101] db_text: typo singular/plural --- src/modules/db_text/doc/db_text_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/db_text/doc/db_text_admin.xml b/src/modules/db_text/doc/db_text_admin.xml index 68ab324afcf..70847c5e6ea 100644 --- a/src/modules/db_text/doc/db_text_admin.xml +++ b/src/modules/db_text/doc/db_text_admin.xml @@ -251,7 +251,7 @@ suser:supasswd:xxx:alpha.org:xxx <varname>db_mode</varname> (integer) Set caching mode (0) or non-caching mode (1). In caching mode, data - is loaded at startup. In non-caching mode, the module check every time + is loaded at startup. In non-caching mode, the module checks every time a table is requested whether the corresponding file on disk has changed, and if yes, will re-load the table from file. From 806b3ae357dcb0cbf6df703fe79c00f3ae47a32d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:49:10 +0200 Subject: [PATCH 024/101] db2_ldap: typos --- src/modules/db2_ldap/doc/db2_ldap.xml | 2 +- src/modules/db2_ldap/ld_fld.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/db2_ldap/doc/db2_ldap.xml b/src/modules/db2_ldap/doc/db2_ldap.xml index 818d33dfceb..2eb7d9b3c12 100644 --- a/src/modules/db2_ldap/doc/db2_ldap.xml +++ b/src/modules/db2_ldap/doc/db2_ldap.xml @@ -39,7 +39,7 @@ all database features or supports them in different manner. Here we must express especially filtering and multi-values. The multi-value is de facto array of single - values. If the LDAP module get a multi-value field then generates + values. If the LDAP module gets a multi-value field then it generates record for every single value, respectively for every combination in case the more fields contain multi-value. diff --git a/src/modules/db2_ldap/ld_fld.c b/src/modules/db2_ldap/ld_fld.c index 7af731f0772..5286b4f5538 100644 --- a/src/modules/db2_ldap/ld_fld.c +++ b/src/modules/db2_ldap/ld_fld.c @@ -454,7 +454,7 @@ int ld_ldap2fldex(db_fld_t* fld, LDAP* ldap, LDAPMessage* msg, int init) lfld->valuesnum = 0; if (lfld->client_side_filtering && lfld->filter) { int j; - /* if the all filter conditions requires NULL value then we can accept the record */ + /* if all the filter conditions require NULL value then we can accept the record */ for (j=0; lfld->filter[j]; j++) { if (lfld->filter[j]->flags & DB_NULL && lfld->filter[j]->op == DB_EQ) { continue; From 6f08913c9d87f4673c928ed42a104732a6884933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:16:42 +0200 Subject: [PATCH 025/101] db2_ops: space after comma --- src/modules/db2_ops/doc/db2_ops.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/db2_ops/doc/db2_ops.xml b/src/modules/db2_ops/doc/db2_ops.xml index 07019deecd6..0b9c77942d5 100644 --- a/src/modules/db2_ops/doc/db2_ops.xml +++ b/src/modules/db2_ops/doc/db2_ops.xml @@ -145,7 +145,7 @@
- <function>db_query(query | query_id [,handle] )</function> + <function>db_query(query | query_id[, handle])</function> Executes query and in case of SELECT returns result via handle, seeks the first From 0449d16976d2a65cd0db1f21df232f81a2bfdcaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sun, 18 Dec 2022 13:24:50 +0200 Subject: [PATCH 026/101] dialog: typos --- src/modules/dialog/doc/dialog_admin.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/dialog/doc/dialog_admin.xml b/src/modules/dialog/doc/dialog_admin.xml index 36d3944d1bc..9b821e2c77e 100644 --- a/src/modules/dialog/doc/dialog_admin.xml +++ b/src/modules/dialog/doc/dialog_admin.xml @@ -182,7 +182,7 @@ <varname>enable_stats</varname> (integer) If statistics support should be enabled or not. Via statistics - variables, the module provide information about the dialog processing. + variables, the module provides information about the dialog processing. Set it to zero to disable or to non-zero to enable it. @@ -254,7 +254,7 @@ modparam("dialog", "rr_param", "xyz") <varname>dlg_flag</varname> (integer) Flag to be used for marking if a dialog should be constructed for the - current request (this make sense only for initial requests). + current request (this makes sense only for initial requests). Note: it is not needed to set this parameter and its corresponding flag @@ -345,7 +345,7 @@ modparam("dialog", "early_timeout", 180) <varname>noack_timeout</varname> (integer) The timeout (in seconds) after which the dialogs which were answered - with 200ok but didn't receive the ACK are marked for termination (the + with 200 OK but didn't receive the ACK are marked for termination (the lifetime is set to 10 more seconds). @@ -1761,7 +1761,7 @@ modparam("dialog", "debug_variables", 1) Functions
- <function moreinfo="none">set_dlg_profile(profile,[value])</function> + <function moreinfo="none">set_dlg_profile(profile[, value])</function> Inserts the current dialog into a profile. Note that if the profile does @@ -1800,7 +1800,7 @@ set_dlg_profile("caller","$fu");
- <function moreinfo="none">unset_dlg_profile(profile,[value])</function> + <function moreinfo="none">unset_dlg_profile(profile[, value])</function> Removes the current dialog from a profile. @@ -1838,7 +1838,7 @@ unset_dlg_profile("caller","$fu");
- <function moreinfo="none">is_in_profile(profile,[value])</function> + <function moreinfo="none">is_in_profile(profile[, value])</function> Checks if the current dialog belongs to a profile. If the profile @@ -1884,7 +1884,7 @@ if (is_in_profile("caller","XX")) {
- <function moreinfo="none">get_profile_size(profile,[value],size)</function> + <function moreinfo="none">get_profile_size(profile[, value], size)</function> Returns the number of dialogs belonging to a profile. If the profile @@ -3106,7 +3106,7 @@ dlg_reset_property("timeout-noreset"); and rining or 1xx has been received. - answering - initial INVITE received 200ok, + answering - initial INVITE received 200 OK, but ACK was not handled yet. From 5deb589b8a91f9fc627cd9a2f63effc959e2addf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:39:01 +0200 Subject: [PATCH 027/101] dialplan: typo --- src/modules/dialplan/doc/dialplan_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dialplan/doc/dialplan_admin.xml b/src/modules/dialplan/doc/dialplan_admin.xml index faa788f225e..ad239522697 100644 --- a/src/modules/dialplan/doc/dialplan_admin.xml +++ b/src/modules/dialplan/doc/dialplan_admin.xml @@ -734,7 +734,7 @@ xlog("translated to var $var(y) \n");
Installation - The modules requires one table in &kamailio; database: dialplan. + This module requires one table in &kamailio; database: dialplan. The SQL syntax to create them can be found in dialplan-create.sql script in the database directories in the kamailio/scripts folder. You can also find the complete database documentation on the From e3094192cbeb34e71d846716be8f01b62983792f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:30:15 +0200 Subject: [PATCH 028/101] dlgs: typos --- src/modules/dlgs/dlgs_records.c | 2 +- src/modules/dlgs/doc/dlgs_admin.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/dlgs/dlgs_records.c b/src/modules/dlgs/dlgs_records.c index d3084084d51..9fe29ca0b99 100644 --- a/src/modules/dlgs/dlgs_records.c +++ b/src/modules/dlgs/dlgs_records.c @@ -1249,7 +1249,7 @@ static void dlgs_rpc_get(rpc_t *rpc, void *ctx) } static const char *dlgs_rpc_getall_doc[2] = { - "Get the all dlgs records by filter", + "Get all the dlgs records by filter", 0 }; diff --git a/src/modules/dlgs/doc/dlgs_admin.xml b/src/modules/dlgs/doc/dlgs_admin.xml index b5c3cf22620..bac89a0e281 100644 --- a/src/modules/dlgs/doc/dlgs_admin.xml +++ b/src/modules/dlgs/doc/dlgs_admin.xml @@ -68,7 +68,7 @@ <varname>active_lifetime</varname> (int) The lifetime in seconds of an active dialog in memory. A dialog is - considered active after the ACK of 200OK for INVITE. + considered active after the ACK of 200 OK for INVITE. From 27e066b3d8cd88c0333d75d4a3b76ad7c2b7c2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:30:27 +0200 Subject: [PATCH 029/101] dnssec: missing space --- src/modules/dnssec/doc/dnssec_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dnssec/doc/dnssec_admin.xml b/src/modules/dnssec/doc/dnssec_admin.xml index ee7ddd1ab18..89ba687b32a 100644 --- a/src/modules/dnssec/doc/dnssec_admin.xml +++ b/src/modules/dnssec/doc/dnssec_admin.xml @@ -79,7 +79,7 @@ Set this parameter to an integer value containing of an ORed result of one or more of the following values - (constant present only for documentation process, as they are mostly mapped to libval flags).Setting this + (constant present only for documentation process, as they are mostly mapped to libval flags). Setting this parameter will cause the libval defaults to be completely overwritten QUERY_DONT_VALIDATE == 1<<0 causes the validator to disable validation for this query. From ef11b04a52837389ea9d72d65b2641efeefc5d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:30:48 +0200 Subject: [PATCH 030/101] =?UTF-8?q?domainpolicy:=20typo=20build=20?= =?UTF-8?q?=E2=86=92=20built?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/domainpolicy/doc/domainpolicy_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/domainpolicy/doc/domainpolicy_admin.xml b/src/modules/domainpolicy/doc/domainpolicy_admin.xml index 3a6f1f03764..f572ae7c738 100644 --- a/src/modules/domainpolicy/doc/domainpolicy_admin.xml +++ b/src/modules/domainpolicy/doc/domainpolicy_admin.xml @@ -579,7 +579,7 @@ mysql> select * from domainpolicy; This example assumes that a set of SIP providers have established a secure Layer 3 network between their proxies. It does not - matter whether this network is build by means of IPsec, a private + matter whether this network is built by means of IPsec, a private Layer 2 network, or by simple firewalling. We will use the 10.x network (for the walled garden net) and "http://l3fed.org/" (as federation identifier) in this example. From da46c4b28b3a0b91db92bb77283ab5057f69cd18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:34:46 +0200 Subject: [PATCH 031/101] erlang: typo --- src/modules/erlang/doc/erlang_admin.xml | 8 ++++---- src/modules/erlang/doc/erlang_devel.xml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/modules/erlang/doc/erlang_admin.xml b/src/modules/erlang/doc/erlang_admin.xml index b2730696e07..6b6bec8d381 100644 --- a/src/modules/erlang/doc/erlang_admin.xml +++ b/src/modules/erlang/doc/erlang_admin.xml @@ -465,7 +465,7 @@ DEBUG: <script>: 410:typeof(X): tuple, length(X): 2, format(X): {line, [{i Functions
- <function moreinfo="none">erl_rpc(mod,fun,args,reply)</function> + <function moreinfo="none">erl_rpc(mod, fun, args, reply)</function> This function supports calling Erlang functions on remote nodes. @@ -513,7 +513,7 @@ DEBUG: <script>: 386:type(repl): tuple, format(repl): {"one", "two"}
- <function moreinfo="none">erl_reg_send(server,msg)</function> + <function moreinfo="none">erl_reg_send(server, msg)</function> This function sends an Erlang term to a registered process. @@ -543,7 +543,7 @@ erl_reg_send("notifier","$erl_tuple(M)");
- <function moreinfo="none">erl_send(pid,msg)</function> + <function moreinfo="none">erl_send(pid, msg)</function> This function sends an Erlang term to a process. This function can be used from ANY_ROUTE. The argument pid @@ -629,7 +629,7 @@ INFO: <script>: 951:Received message: {"hello", "Kamailio"}
Registered pseudo process - To create pseudo erlang registered process in &kamailio; scrip create event route in form of + To create pseudo erlang registered process in &kamailio; script create event route in form of event_route[erlang:<my_process_name>]. Where <my_process_name> is the name of pseudo process. diff --git a/src/modules/erlang/doc/erlang_devel.xml b/src/modules/erlang/doc/erlang_devel.xml index 594c52ff8cd..c1a67f6efde 100644 --- a/src/modules/erlang/doc/erlang_devel.xml +++ b/src/modules/erlang/doc/erlang_devel.xml @@ -30,7 +30,7 @@
- <function moreinfo="none">rpc(reply,module,function,args)</function> + <function moreinfo="none">rpc(reply, module, function, args)</function> This function supports calling Erlang functions on remote nodes. On success function returns 0. @@ -53,7 +53,7 @@
- <function moreinfo="none">reg_send(server,msg)</function> + <function moreinfo="none">reg_send(server, msg)</function> This function sends an Erlang term to a registered process. On success return 0. @@ -72,7 +72,7 @@
- <function moreinfo="none">send(pid,msg)</function> + <function moreinfo="none">send(pid, msg)</function> This function sends an Erlang term to a process. On success return 0. @@ -106,7 +106,7 @@
- <function moreinfo="none">xavp2xbuff(xbuff,xavp)</function> + <function moreinfo="none">xavp2xbuff(xbuff, xavp)</function> Function encodes XAVP variable into ei dynamic buffer. How to create XAVP variable @@ -125,7 +125,7 @@
- <function moreinfo="none">xbuff2xavp(xavp,xbuff)</function> + <function moreinfo="none">xbuff2xavp(xavp, xbuff)</function> Function decodes ei dynamic buffer into XAVP variable. From 46d14fc52cfd70f0db2c77b96c77d0c4b8f7b591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:30:49 +0200 Subject: [PATCH 032/101] exec: typo variabLes --- src/modules/exec/doc/exec_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/exec/doc/exec_admin.xml b/src/modules/exec/doc/exec_admin.xml index 12249d5104a..fd0d88f4f55 100644 --- a/src/modules/exec/doc/exec_admin.xml +++ b/src/modules/exec/doc/exec_admin.xml @@ -169,7 +169,7 @@ modparam("exec", "time_to_kill", 20) command - Command to be executed. It can - include pseudo- variabes; + include pseudo-variables; @@ -243,7 +243,7 @@ exec_msg("echo TEST > /tmp/$rU.txt"); command - Command to be executed. It can - include pseudo- variabes; + include pseudo-variables; From 8690b4fa69ccd08f985e2a4e4e64e620fc56e612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:31:10 +0200 Subject: [PATCH 033/101] imc: typo joininG --- src/modules/imc/doc/imc_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/imc/doc/imc_admin.xml b/src/modules/imc/doc/imc_admin.xml index 4b71c5f6806..a2fd541ea7c 100644 --- a/src/modules/imc/doc/imc_admin.xml +++ b/src/modules/imc/doc/imc_admin.xml @@ -239,7 +239,7 @@ modparam("imc", "extra_hdrs", "P-Flags: 3\r\n") If set to 1 and user requests to join a non-existing room, the room will be automatically created. If set - to 0, joinin a non-existing room returns an error. + to 0, joining a non-existing room returns an error. From c3533ad8fba60da2c491dacdc5f5211b34eec942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:18:49 +0200 Subject: [PATCH 034/101] ims_auth: typo succesSful --- src/modules/ims_auth/sip_messages.h | 2 +- src/modules/ims_auth/utils.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_auth/sip_messages.h b/src/modules/ims_auth/sip_messages.h index f1752c781e2..c8fc33bec41 100644 --- a/src/modules/ims_auth/sip_messages.h +++ b/src/modules/ims_auth/sip_messages.h @@ -46,7 +46,7 @@ #define S_CSCF_SIP_MESSAGES_H_ -#define MSG_200_SAR_OK "OK - SAR succesful and registrar saved" +#define MSG_200_SAR_OK "OK - SAR successful and registrar saved" #define MSG_400_BAD_REQUEST "Bad Request" #define MSG_400_BAD_Contact "Bad Request - Error parsing Contact header" diff --git a/src/modules/ims_auth/utils.c b/src/modules/ims_auth/utils.c index b745af02753..9ee7981f0c7 100644 --- a/src/modules/ims_auth/utils.c +++ b/src/modules/ims_auth/utils.c @@ -305,7 +305,7 @@ str ims_get_nonce(struct sip_msg *msg, str realm) * Adds a header to the reply message * @param msg - the request to add a header to its reply * @param content - the str containing the new header - * @returns 1 on succes, 0 on failure + * @returns 1 on success, 0 on failure */ int ims_add_header_rpl(struct sip_msg *msg, str *hdr) { From 088d649a39eb14d4598e96df9af8e22bf6c29647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sun, 18 Dec 2022 13:24:57 +0200 Subject: [PATCH 035/101] ims_dialog: typo this makeS sense --- src/modules/ims_dialog/doc/ims_dialog_admin.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/ims_dialog/doc/ims_dialog_admin.xml b/src/modules/ims_dialog/doc/ims_dialog_admin.xml index 5a2ddc95857..4d3b0f05130 100644 --- a/src/modules/ims_dialog/doc/ims_dialog_admin.xml +++ b/src/modules/ims_dialog/doc/ims_dialog_admin.xml @@ -211,7 +211,7 @@ modparam("ims_dialog", "rr_param", "xyz") Flag to be used for marking if a dialog should be constructed for the - current request (this make sense only for initial requests). + current request (this makes sense only for initial requests). @@ -482,7 +482,7 @@ modparam("dialog", "bridge_controller", "sip:ctd@kamailio.org") Functions
- <function moreinfo="none">set_dlg_profile(profile,[value])</function> + <function moreinfo="none">set_dlg_profile(profile[, value])</function> Inserts the current dialog into a profile. Note that if the profile does @@ -526,7 +526,7 @@ set_dlg_profile("caller","$fu");
- <function moreinfo="none">unset_dlg_profile(profile,[value])</function> + <function moreinfo="none">unset_dlg_profile(profile[, value])</function> Removes the current dialog from a profile. @@ -568,7 +568,7 @@ unset_dlg_profile("caller","$fu");
- <function moreinfo="none">is_in_profile(profile,[value])</function> + <function moreinfo="none">is_in_profile(profile[, value])</function> Checks if the current dialog belongs to a profile. If the profile @@ -617,7 +617,7 @@ if (is_in_profile("caller","XX")) {
- <function moreinfo="none">get_profile_size(profile,[value],size)</function> + <function moreinfo="none">get_profile_size(profile[, value], size)</function> Returns the number of dialogs belonging to a profile. If the profile From d4fd63f5ab6eb4719139ad9e256ab0cfb580dce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:25:13 +0200 Subject: [PATCH 036/101] ims_registrar_pcscf: typo successfulLy --- src/modules/ims_registrar_pcscf/notify.c | 2 +- src/modules/ims_registrar_pcscf/notify.h | 2 +- src/modules/ims_registrar_pcscf/save.c | 2 +- src/modules/ims_registrar_pcscf/subscribe.c | 2 +- src/modules/ims_registrar_pcscf/subscribe.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/ims_registrar_pcscf/notify.c b/src/modules/ims_registrar_pcscf/notify.c index ca5391c7c1a..ef96ec03ea6 100644 --- a/src/modules/ims_registrar_pcscf/notify.c +++ b/src/modules/ims_registrar_pcscf/notify.c @@ -23,7 +23,7 @@ * * History: * ======== * - * Nov 2013 Richard Good migrated pua_reginfo funtionality to ims_registrar_pcscf + * Nov 2013 Richard Good migrated pua_reginfo functionality to ims_registrar_pcscf * */ diff --git a/src/modules/ims_registrar_pcscf/notify.h b/src/modules/ims_registrar_pcscf/notify.h index ef64c794fea..12317536f87 100644 --- a/src/modules/ims_registrar_pcscf/notify.h +++ b/src/modules/ims_registrar_pcscf/notify.h @@ -23,7 +23,7 @@ * * History: * ======== * - * Nov 2013 Richard Good migrated pua_reginfo funtionality to ims_registrar_pcscf + * Nov 2013 Richard Good migrated pua_reginfo functionality to ims_registrar_pcscf * */ diff --git a/src/modules/ims_registrar_pcscf/save.c b/src/modules/ims_registrar_pcscf/save.c index b33a596cd2d..28afd37968a 100644 --- a/src/modules/ims_registrar_pcscf/save.c +++ b/src/modules/ims_registrar_pcscf/save.c @@ -233,7 +233,7 @@ static inline int update_contacts(struct sip_msg *req,struct sip_msg *rpl, udoma LM_DBG("failed to update pcscf contact\n"); }else{ // Register callback to destroy related tunnels to this contact. - // The registration should be exact here, after the successfuly registration of the UE + // The registration should be exact here, after the successful registration of the UE LM_DBG("ul.register_ulcb(pcontact, PCSCF_CONTACT_EXPIRE|PCSCF_CONTACT_DELETE...)\n"); if(ul.register_ulcb(pcontact, PCSCF_CONTACT_EXPIRE|PCSCF_CONTACT_DELETE, ipsec_pcscf.ipsec_on_expire, NULL) != 1){ LM_DBG("Error subscribing for contact\n"); diff --git a/src/modules/ims_registrar_pcscf/subscribe.c b/src/modules/ims_registrar_pcscf/subscribe.c index 68f788f84ae..7765fc11947 100644 --- a/src/modules/ims_registrar_pcscf/subscribe.c +++ b/src/modules/ims_registrar_pcscf/subscribe.c @@ -23,7 +23,7 @@ * * History: * ======== * - * Nov 2013 Richard Good migrated pua_reginfo funtionality to ims_registrar_pcscf + * Nov 2013 Richard Good migrated pua_reginfo functionality to ims_registrar_pcscf */ #include "subscribe.h" diff --git a/src/modules/ims_registrar_pcscf/subscribe.h b/src/modules/ims_registrar_pcscf/subscribe.h index b434108f806..7fb021bbc1d 100644 --- a/src/modules/ims_registrar_pcscf/subscribe.h +++ b/src/modules/ims_registrar_pcscf/subscribe.h @@ -23,7 +23,7 @@ * * History: * ======== * - * Nov 2013 Richard Good migrated pua_reginfo funtionality to ims_registrar_pcscf + * Nov 2013 Richard Good migrated pua_reginfo functionality to ims_registrar_pcscf * */ From f3c5a1294c0ee5dc8c8172674e61e0b72d010cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 12:41:24 +0200 Subject: [PATCH 037/101] fixup ims_registrar_pcscf --- src/modules/ims_registrar_pcscf/save.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ims_registrar_pcscf/save.c b/src/modules/ims_registrar_pcscf/save.c index 28afd37968a..5d6186cfb6d 100644 --- a/src/modules/ims_registrar_pcscf/save.c +++ b/src/modules/ims_registrar_pcscf/save.c @@ -233,7 +233,7 @@ static inline int update_contacts(struct sip_msg *req,struct sip_msg *rpl, udoma LM_DBG("failed to update pcscf contact\n"); }else{ // Register callback to destroy related tunnels to this contact. - // The registration should be exact here, after the successful registration of the UE + // The registration should be exactly here, after the successful registration of the UE LM_DBG("ul.register_ulcb(pcontact, PCSCF_CONTACT_EXPIRE|PCSCF_CONTACT_DELETE...)\n"); if(ul.register_ulcb(pcontact, PCSCF_CONTACT_EXPIRE|PCSCF_CONTACT_DELETE, ipsec_pcscf.ipsec_on_expire, NULL) != 1){ LM_DBG("Error subscribing for contact\n"); From 9370b71bdf2df0baa9794e56479b3b3c5134662d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:34:37 +0200 Subject: [PATCH 038/101] =?UTF-8?q?ims=5Fregistrar=5Fscscf:=20200OK=20?= =?UTF-8?q?=E2=86=92=20200=20OK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ims_registrar_scscf/doc/ims_registrar_scscf_admin.xml | 4 ++-- src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/ims_registrar_scscf/doc/ims_registrar_scscf_admin.xml b/src/modules/ims_registrar_scscf/doc/ims_registrar_scscf_admin.xml index 979ccfbd0f7..16755c83044 100644 --- a/src/modules/ims_registrar_scscf/doc/ims_registrar_scscf_admin.xml +++ b/src/modules/ims_registrar_scscf/doc/ims_registrar_scscf_admin.xml @@ -434,9 +434,9 @@
skip_multiple_bindings_on_reg_resp (int) - If set to 1 - on Re-Registration registrar sends in 200OK reply only + If set to 1 - on Re-Registration registrar sends in 200 OK reply only current contact in case of multiple bindings. - If set to 0 - on Re-Registration registrar sends in 200OK reply all + If set to 0 - on Re-Registration registrar sends in 200 OK reply all contacts in case of multiple bindings according to RFC3261. diff --git a/src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c b/src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c index b2d7a38d455..4b65ccb1475 100644 --- a/src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c +++ b/src/modules/ims_registrar_scscf/ims_registrar_scscf_mod.c @@ -98,7 +98,7 @@ char *scscf_user_data_xsd = 0; /* Path to "CxDataType_Rel6.xsd" or "CxDataType_R int scscf_support_wildcardPSI = 0; int store_data_on_dereg = 0; /**< should we store SAR data on de-registration */ unsigned int send_vs_callid_avp = 1; /* flag to enable/disable proprietary use of a callid AVP. TODO: add call-id as per TS129.229 */ -int skip_multiple_bindings_on_reg_resp = 0; /* For RE-REGISTRATION in 200OK add only the current contact and skip all other bindings */ +int skip_multiple_bindings_on_reg_resp = 0; /* For RE-REGISTRATION in 200 OK add only the current contact and skip all other bindings */ int ue_unsubscribe_on_dereg = 0; /*many UEs do not unsubscribe on de reg - therefore we should remove their subscription and not send a notify Some UEs do unsubscribe then everything is fine*/ From 9853c0b307361cc929c84fdcefd12b86909f6a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:33:47 +0200 Subject: [PATCH 039/101] ims_usrloc_scscf: toggled comma-space --- src/modules/ims_usrloc_scscf/doc/ims_usrloc_scscf_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ims_usrloc_scscf/doc/ims_usrloc_scscf_admin.xml b/src/modules/ims_usrloc_scscf/doc/ims_usrloc_scscf_admin.xml index 7d8ca0b0bf9..e505311d3ff 100644 --- a/src/modules/ims_usrloc_scscf/doc/ims_usrloc_scscf_admin.xml +++ b/src/modules/ims_usrloc_scscf/doc/ims_usrloc_scscf_admin.xml @@ -276,7 +276,7 @@
contact_delete_delay (int) - If contact is put into delay delete state ,this is how long we delay before deleting + If contact is put into delay delete state, this is how long we delay before deleting Default value is 30 Set <varname>contact_delete_delay </varname>parameter From 031d01f48fbdea9fca8397fc5be371aa318f2944 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:33:40 +0200 Subject: [PATCH 040/101] ipops: typo singular/plural --- src/modules/ipops/ipops_mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ipops/ipops_mod.c b/src/modules/ipops/ipops_mod.c index ee4731d5438..d9f01317e5f 100644 --- a/src/modules/ipops/ipops_mod.c +++ b/src/modules/ipops/ipops_mod.c @@ -30,7 +30,7 @@ /*! \defgroup ipops SIP-router ipops Module * - * The ipops module provide IPv4 and IPv6 operations. + * The ipops module provides IPv4 and IPv6 operations. */ #include From 18f28bfaf2178e2a9833f25ac382c11daa336206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:40:25 +0200 Subject: [PATCH 041/101] json: typo fuNction --- src/modules/json/json_trans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/json/json_trans.c b/src/modules/json/json_trans.c index e200ef70846..3285c7dba73 100644 --- a/src/modules/json/json_trans.c +++ b/src/modules/json/json_trans.c @@ -384,7 +384,7 @@ int json_tr_eval( /*! - * \brief Helper fuction to parse a JSON transformation + * \brief Helper function to parse a JSON transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error From b7b552a8bbe7b485c666402ce1ce69e609809818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:35:15 +0200 Subject: [PATCH 042/101] jwt_admin: doc/jwt_generate - fix function declaration --- src/modules/jwt/doc/jwt_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/jwt/doc/jwt_admin.xml b/src/modules/jwt/doc/jwt_admin.xml index f247b43b46d..165ca170f95 100644 --- a/src/modules/jwt/doc/jwt_admin.xml +++ b/src/modules/jwt/doc/jwt_admin.xml @@ -85,7 +85,7 @@ modparam("jwt", "key_mode", 1) Functions
- <function moreinfo="none">jwt_generate(prvkey, alg, claims, [headers])</function> + <function moreinfo="none">jwt_generate(prvkey, alg, claims[, headers])</function> Generate the JWT, its value can be retrieved in the variable $jwt(val). From 76647eee6f57dca4d9d3b88f4fce2154cacdd696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:40:39 +0200 Subject: [PATCH 043/101] kazoo: typo fuNction --- src/modules/kazoo/kz_trans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/kazoo/kz_trans.c b/src/modules/kazoo/kz_trans.c index 59e555161e0..1a5e74e69ff 100644 --- a/src/modules/kazoo/kz_trans.c +++ b/src/modules/kazoo/kz_trans.c @@ -420,7 +420,7 @@ int kz_tr_eval(struct sip_msg *msg, tr_param_t *tp, int subtype, pv_value_t *val /*! - * \brief Helper fuction to parse a kazoo transformation + * \brief Helper function to parse a kazoo transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error From 6f0bde482b5af62403461a93336fe047d116e814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:19:11 +0200 Subject: [PATCH 044/101] keepalive: typo unsuccesSful --- src/modules/keepalive/doc/keepalive_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/keepalive/doc/keepalive_admin.xml b/src/modules/keepalive/doc/keepalive_admin.xml index 5b74c6e4cc5..431b5958e0b 100644 --- a/src/modules/keepalive/doc/keepalive_admin.xml +++ b/src/modules/keepalive/doc/keepalive_admin.xml @@ -96,7 +96,7 @@ modparam("keepalive", "destination", "sip.provider.com")
<varname>delete_counter</varname>(int) - Unsuccesful attemps increase delete_counter. After passing it, keepalive module doesn't try to send options requests. Ignored if it's set to 0. + Unsuccessful attemps increase delete_counter. After passing it, keepalive module doesn't try to send options requests. Ignored if it's set to 0. From bb02ac9ae9e2597f86133e57a12f04095bea7a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:51:24 +0200 Subject: [PATCH 045/101] lrkproxy: typo --- src/modules/lrkproxy/doc/lrkproxy_admin.xml | 2 +- src/modules/lrkproxy/lrkproxy.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/lrkproxy/doc/lrkproxy_admin.xml b/src/modules/lrkproxy/doc/lrkproxy_admin.xml index 0c2ffb44e73..06cbed3a637 100644 --- a/src/modules/lrkproxy/doc/lrkproxy_admin.xml +++ b/src/modules/lrkproxy/doc/lrkproxy_admin.xml @@ -438,7 +438,7 @@ - ip_address - new SDP IP address.This optional parameter is under development. + ip_address - new SDP IP address. This optional parameter is under development. diff --git a/src/modules/lrkproxy/lrkproxy.c b/src/modules/lrkproxy/lrkproxy.c index ef0734e9dba..113b19c86b8 100644 --- a/src/modules/lrkproxy/lrkproxy.c +++ b/src/modules/lrkproxy/lrkproxy.c @@ -617,7 +617,7 @@ mod_init(void) pkg_free(lrkp_strings); - /* init the hastable which keeps the all media address for both party and also the elected_node <--> callid& via-branch relation */ + /* init the hastable which keeps all the media address for both party and also the elected_node <--> callid& via-branch relation */ if (hash_table_size < 1){ hash_table_size = HASH_SIZE; //the default size 128 entry. } From b259d9b8ce23bdc97d7c1fb2b8205437624860e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:34:51 +0200 Subject: [PATCH 046/101] mangler: missing space --- src/modules/mangler/doc/mangler_params.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/mangler/doc/mangler_params.xml b/src/modules/mangler/doc/mangler_params.xml index 882ed5c62ba..ca6c21994dd 100644 --- a/src/modules/mangler/doc/mangler_params.xml +++ b/src/modules/mangler/doc/mangler_params.xml @@ -20,7 +20,7 @@ The first character of this field must be set to a value which is not used inside username, password or other fields of - contact.Otherwise it is possible for the decoding step to + contact. Otherwise it is possible for the decoding step to fail/produce wrong results. From c8a143641900b8adefcae00ca4807757f5e91b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 22:39:42 +0200 Subject: [PATCH 047/101] maxfwd: typo --- src/modules/maxfwd/doc/maxfwd_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/maxfwd/doc/maxfwd_admin.xml b/src/modules/maxfwd/doc/maxfwd_admin.xml index e48a02a616a..a00a5b3e182 100644 --- a/src/modules/maxfwd/doc/maxfwd_admin.xml +++ b/src/modules/maxfwd/doc/maxfwd_admin.xml @@ -181,7 +181,7 @@ if (!maxfwd_process("10") && $retcode==-1) { is_maxfwd_lt(max_value) - Checks if the Max-Forward header value is less then the + Checks if the Max-Forward header value is less than the max_value parameter value. It considers also the value of the new inserted header (if locally added). The parameter can be a variable. From b90cf82227ba8f8fb46367b7b3e08ed0fad3ac38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sun, 18 Dec 2022 22:10:11 +0200 Subject: [PATCH 048/101] msilo: typos --- src/modules/msilo/doc/msilo_admin.xml | 4 ++-- src/modules/msilo/msilo.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/msilo/doc/msilo_admin.xml b/src/modules/msilo/doc/msilo_admin.xml index ca48d7ea075..e89edc315c5 100644 --- a/src/modules/msilo/doc/msilo_admin.xml +++ b/src/modules/msilo/doc/msilo_admin.xml @@ -22,7 +22,7 @@ messages. - For each message, the modules stores Request-URI + For each message, the module stores Request-URI (R-URI) only if it is a complete address of record (username@hostname), &uri; from To header, &uri; from From header, incoming time, @@ -561,7 +561,7 @@ modparam("msilo", "use_contact", 0) <varname>snd_time_avp</varname> (str) The name of an AVP which may contain the time when to sent - the received message as reminder.The AVP is used ony by m_store(). + the received message as reminder. The AVP is used ony by m_store(). If the parameter is not set, the module does not look for this AVP. If diff --git a/src/modules/msilo/msilo.c b/src/modules/msilo/msilo.c index f7218bfa619..fc961373220 100644 --- a/src/modules/msilo/msilo.c +++ b/src/modules/msilo/msilo.c @@ -1604,7 +1604,7 @@ int check_message_support(struct sip_msg* msg) } } - /* no positivie expires header */ + /* no positive expires header */ if(posexp==0) return -1; From c352553ee273505484fa99d2f9a91586de665469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:25:37 +0200 Subject: [PATCH 049/101] nathelper: typo statefulLy --- src/modules/nathelper/examples/nathelper.cfg | 2 +- src/modules/nathelper/examples/nathelper_rtpp.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/nathelper/examples/nathelper.cfg b/src/modules/nathelper/examples/nathelper.cfg index 520e77c15df..2c90e30a7b4 100644 --- a/src/modules/nathelper/examples/nathelper.cfg +++ b/src/modules/nathelper/examples/nathelper.cfg @@ -61,7 +61,7 @@ route{ }; }; - /* set up reply processing and forward statefuly */ + /* set up reply processing and forward statefully */ t_relay(); } diff --git a/src/modules/nathelper/examples/nathelper_rtpp.cfg b/src/modules/nathelper/examples/nathelper_rtpp.cfg index 381d798e8f2..72e02f0d65f 100644 --- a/src/modules/nathelper/examples/nathelper_rtpp.cfg +++ b/src/modules/nathelper/examples/nathelper_rtpp.cfg @@ -62,7 +62,7 @@ route{ }; }; - /* set up reply processing and forward statefuly */ + /* set up reply processing and forward statefully */ t_relay(); } From d84b3c3c4bac4a1ae9f1cf82e541e34c832b4dfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:35:26 +0200 Subject: [PATCH 050/101] =?UTF-8?q?nat=5Ftraversal:=20typo=20build=20?= =?UTF-8?q?=E2=86=92=20built?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/nat_traversal/doc/nat_traversal_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/nat_traversal/doc/nat_traversal_admin.xml b/src/modules/nat_traversal/doc/nat_traversal_admin.xml index 3f0393f9576..d0a4921857c 100644 --- a/src/modules/nat_traversal/doc/nat_traversal_admin.xml +++ b/src/modules/nat_traversal/doc/nat_traversal_admin.xml @@ -308,7 +308,7 @@ distributed over the keepalive interval to avoid overloading the proxy by generating too many messages at a time. The nat_traversal module keeps its internal state about endpoints that need keepalive, - state that is build while messages are processed by the proxy and + state that is built while messages are processed by the proxy and thus it doesn't need to transfer any information from the usrloc module, which should also improve its efficiency. From 4a46c0df5c82be335b9de2a600ff286f9128cbed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:50:59 +0200 Subject: [PATCH 051/101] p_usrloc: typos --- src/modules/p_usrloc/doc/p_usrloc_admin.xml | 4 ++-- src/modules/p_usrloc/doc/p_usrloc_devel.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/p_usrloc/doc/p_usrloc_admin.xml b/src/modules/p_usrloc/doc/p_usrloc_admin.xml index ca8faa827f9..6153dbcb004 100644 --- a/src/modules/p_usrloc/doc/p_usrloc_admin.xml +++ b/src/modules/p_usrloc/doc/p_usrloc_admin.xml @@ -424,7 +424,7 @@ modparam("p_usrloc", "failover_level", "1") Specifies the interval (in seconds) in which a timer process shall check the availability of the databases and try to reconnect - to broken ones. It don't make sense to choose a lower value as 10. + to broken ones. It doesn't make sense to choose a lower value as 10. It's necessary to provide a writeable master database, otherwise this check stays disabled. @@ -877,7 +877,7 @@ modparam("p_usrloc", "db_mode", 2) reasons. This can be done by setting the status column of the respective database in the p_usrloc to the value 2. This setting is autodetected from all modules on the server cluster. Changes in the locdb table are periodically - polled with help of a timer process. After one minute the all read and write traffic + polled with help of a timer process. After one minute all the read and write traffic is removed from the deactivated database, and maintenance can be done. diff --git a/src/modules/p_usrloc/doc/p_usrloc_devel.xml b/src/modules/p_usrloc/doc/p_usrloc_devel.xml index b6b48c131a8..846b94c63ea 100644 --- a/src/modules/p_usrloc/doc/p_usrloc_devel.xml +++ b/src/modules/p_usrloc/doc/p_usrloc_devel.xml @@ -249,7 +249,7 @@ Lookup the first and if needed the second key, and performs a query in one of the chosen databases. The returned handle _r_h must be used to free the result set after the usage of the returned database entries, otherwise a memory leak - will occur.You must call ul_db_free_result before you can call ul_db_query again! + will occur. You must call ul_db_free_result before you can call ul_db_query again! Meaning of the parameters is as follows: From f5b83d1e75b0ea821715ccebc2173e2e9f18d42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:32:43 +0200 Subject: [PATCH 052/101] permissions: space after comma --- src/modules/permissions/doc/permissions_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/permissions/doc/permissions_admin.xml b/src/modules/permissions/doc/permissions_admin.xml index 20d75188883..9336112cecb 100644 --- a/src/modules/permissions/doc/permissions_admin.xml +++ b/src/modules/permissions/doc/permissions_admin.xml @@ -963,7 +963,7 @@ if (allow_routing("basename")) {
- <function moreinfo="none">allow_routing(allow_file,deny_file)</function> + <function moreinfo="none">allow_routing(allow_file, deny_file)</function> Returns true if all pairs constructed as described in From 8eff5e43c7038105ee418f2411d7e9b33462e564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:36:10 +0200 Subject: [PATCH 053/101] =?UTF-8?q?pike:=20typo=20build=20=E2=86=92=20buil?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pike/doc/pike_devel.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pike/doc/pike_devel.xml b/src/modules/pike/doc/pike_devel.xml index 950b54cf907..65b629ce0c0 100644 --- a/src/modules/pike/doc/pike_devel.xml +++ b/src/modules/pike/doc/pike_devel.xml @@ -42,7 +42,7 @@ tree root / \ - 142 - After x more hits, the 175 node is build; the hits of + After x more hits, the 175 node is built; the hits of 193 node are split between itself and its child--both of them gone have x/2. From 3af12ba674d1143f784afebd5d10ba270a6579f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:19:53 +0200 Subject: [PATCH 054/101] pipelimit: typo unsuccesSful --- src/modules/pipelimit/pl_statistics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pipelimit/pl_statistics.c b/src/modules/pipelimit/pl_statistics.c index 0c6c52d3892..9987ca7e5a2 100644 --- a/src/modules/pipelimit/pl_statistics.c +++ b/src/modules/pipelimit/pl_statistics.c @@ -274,7 +274,7 @@ static int parse_proc_net_line(char *line, int *ipAddress, int *rx_queue) /* strtol()'s specifications specify that the second parameter * is set to the first parameter when a number couldn't be - * parsed out. This means the parse was unsuccesful. */ + * parsed out. This means the parse was unsuccessful. */ if (nextNonNumericalChar == currColonLocation) { return 0; } From c3248e6bd0e158ba9cf833db175dadaef99ec3d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 22:39:51 +0200 Subject: [PATCH 055/101] presence: typos --- src/modules/presence/doc/presence_admin.xml | 2 +- src/modules/presence/doc/presence_devel.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence/doc/presence_admin.xml b/src/modules/presence/doc/presence_admin.xml index c0a6f16e6f7..542b2d97fc1 100644 --- a/src/modules/presence/doc/presence_admin.xml +++ b/src/modules/presence/doc/presence_admin.xml @@ -412,7 +412,7 @@ modparam("presence", "min_expires", 1800)
<varname>min_expires_action</varname> (int) - The action to take when UA sends an expires value less then min_expires. + The action to take when UA sends an expires value less than min_expires. diff --git a/src/modules/presence/doc/presence_devel.xml b/src/modules/presence/doc/presence_devel.xml index 2bb19537640..a8a27ae92da 100644 --- a/src/modules/presence/doc/presence_devel.xml +++ b/src/modules/presence/doc/presence_devel.xml @@ -249,7 +249,7 @@ typedef void(free_body_t)(char* body); This field must be set if the module needs to manipulate the NOTIFY body for each watcher. E.g. if the XML body includes a 'version' parameter which will be increased for each NOTIFY, on a "per watcher" basis. - The module can either allocate a new buffer for the new body an return it (aux_free_body + The module can either allocate a new buffer for the new body and return it (aux_free_body function must be set too) or it manipulates the original body directly and returns NULL. From b332d4daa7215d0e0b09e0e679671b331ae94f11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:38:59 +0200 Subject: [PATCH 056/101] presence_conference: typo fuNction --- src/modules/presence_conference/add_events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/presence_conference/add_events.c b/src/modules/presence_conference/add_events.c index 7683f5a8bc6..09aa6abe4f8 100644 --- a/src/modules/presence_conference/add_events.c +++ b/src/modules/presence_conference/add_events.c @@ -48,7 +48,7 @@ int conference_add_events(void) event.req_auth = 0; event.evs_publ_handl = 0; - /* aggregate XML body and free() fuction */ + /* aggregate XML body and free() function */ event.agg_nbody = conf_agg_nbody; event.free_body = free_xml_body; From 87bc9533e067b3fb3b79774e7869dd7aeaacc244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:39:15 +0200 Subject: [PATCH 057/101] presence_dialoginfo: typo fuNction --- src/modules/presence_dialoginfo/add_events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/presence_dialoginfo/add_events.c b/src/modules/presence_dialoginfo/add_events.c index bed11b2d482..dbebcd93c88 100644 --- a/src/modules/presence_dialoginfo/add_events.c +++ b/src/modules/presence_dialoginfo/add_events.c @@ -48,7 +48,7 @@ int dlginfo_add_events(void) event.req_auth = 0; event.evs_publ_handl = 0; - /* aggregate XML body and free() fuction */ + /* aggregate XML body and free() function */ event.agg_nbody = dlginfo_agg_nbody; event.free_body = free_xml_body; From 071928a6edadcc2d557a6295b6cef6d9f029cbd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:39:25 +0200 Subject: [PATCH 058/101] presence_reginfo: typo fuNction --- src/modules/presence_reginfo/add_events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/presence_reginfo/add_events.c b/src/modules/presence_reginfo/add_events.c index 48f4cf3fc4b..f59f123094b 100644 --- a/src/modules/presence_reginfo/add_events.c +++ b/src/modules/presence_reginfo/add_events.c @@ -49,7 +49,7 @@ int reginfo_add_events(void) if(pres_reginfo_aggregate_presentities) { - /* aggregate XML body and free() fuction */ + /* aggregate XML body and free() function */ event.agg_nbody = reginfo_agg_nbody; event.free_body = free_xml_body; /* modify XML body for each watcher to set the correct "version" */ From 241b57425a61f4a5cb2adb7b0297f381f5ffdf1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Mon, 19 Dec 2022 13:22:25 +0200 Subject: [PATCH 059/101] pua: typo --- src/modules/pua/doc/pua_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua/doc/pua_admin.xml b/src/modules/pua/doc/pua_admin.xml index 417dd9a1109..f7a58ebc538 100644 --- a/src/modules/pua/doc/pua_admin.xml +++ b/src/modules/pua/doc/pua_admin.xml @@ -16,7 +16,7 @@
Overview - This module offer the functionality of a presence user agent client, + This module offers the functionality of a presence user agent client, sending SUBSCRIBE and PUBLISH SIP messages. It's a core part of &kamailio;'s SIP presence package, implementing SIMPLE and various shared line appearance implementations. @@ -24,7 +24,7 @@ It can be used with the following modules: pua_rpc, pua_usrloc, pua_bla, pua_dialoginfo, pua_reginfo and pua_xmpp. - The pua_rpc module offer the possibility to publish any kind of information via the RPC transport. + The pua_rpc module offers the possibility to publish any kind of information via the RPC transport. The pua_usrloc module calls a function exported by pua modules to publish elementary presence information, such as basic status "open" or "closed", for clients that do not implement client-to-server presence. From 1fbe89085efe432ff1833f17c3e992e5ac22fee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:39:48 +0200 Subject: [PATCH 060/101] pua_bla: typo singular/plural --- src/modules/pua_bla/doc/pua_bla_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pua_bla/doc/pua_bla_admin.xml b/src/modules/pua_bla/doc/pua_bla_admin.xml index 4a9353c74d2..a829b9a3d28 100644 --- a/src/modules/pua_bla/doc/pua_bla_admin.xml +++ b/src/modules/pua_bla/doc/pua_bla_admin.xml @@ -147,7 +147,7 @@ modparam("pua_bla", "server_address", "sip:bla@160.34.23.12") The function is used to mark REGISTER requests made to a BLA AOR. - The modules subscribes to the registered contacts for dialog;sla + The module subscribes to the registered contacts for dialog;sla event. From 26805ebb8092ebbc759ae0ecd6f9b49fec03968a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:11:19 +0200 Subject: [PATCH 061/101] pua_dialoginfo: typo --- src/modules/pua_dialoginfo/dialog_publish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pua_dialoginfo/dialog_publish.c b/src/modules/pua_dialoginfo/dialog_publish.c index 137823c21b9..ba9ef5f1c62 100644 --- a/src/modules/pua_dialoginfo/dialog_publish.c +++ b/src/modules/pua_dialoginfo/dialog_publish.c @@ -131,7 +131,7 @@ str* build_dialoginfo(char *state, str *entity, str *peer, str *callid, * Thus, id could be for example derived from the totag. * * Currently the dialog module does not support multiple dialogs. - * Thus, it does no make sense to differ here between multiple dialog. + * Thus, it does not make sense to differ here between multiple dialog. * Thus, id and call-id will be populated identically */ /* dialog tag */ From 7e8449499ff0c2b3ad78c97ca6330a7c8efa2e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:53:23 +0200 Subject: [PATCH 062/101] pua_xmpp: typo a/an xmpp --- src/modules/pua_xmpp/doc/pua_xmpp_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pua_xmpp/doc/pua_xmpp_admin.xml b/src/modules/pua_xmpp/doc/pua_xmpp_admin.xml index 8a311ba3dfa..1645c4a02d6 100644 --- a/src/modules/pua_xmpp/doc/pua_xmpp_admin.xml +++ b/src/modules/pua_xmpp/doc/pua_xmpp_admin.xml @@ -120,7 +120,7 @@ modparam("pua_xmpp", "server_address", "sip:160.23.23.10") pua_xmpp_req_winfo(request_uri, expires) - Function called when a Subscribe addressed to a user from a + Function called when a Subscribe addressed to a user from an xmpp domain is received. It calls sending a Subscribe for winfo for the user, and the following Notify with dialog-info is translated into a subscription in xmpp. From 01abed3ada165ab31e16d5204674181fab04a6ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 06:55:31 +0200 Subject: [PATCH 063/101] pv: typos --- src/modules/pv/pv_core.c | 2 +- src/modules/pv/pv_trans.c | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/modules/pv/pv_core.c b/src/modules/pv/pv_core.c index d279afccbf3..3c0850b74b2 100644 --- a/src/modules/pv/pv_core.c +++ b/src/modules/pv/pv_core.c @@ -4650,7 +4650,7 @@ int pv_set_ccp_attrs(struct sip_msg* msg, pv_param_t *param, char *sep = NULL; if(val == NULL || (val->flags&PV_VAL_NULL)) { - LM_WARN("ignoring null asignment\n"); + LM_WARN("ignoring null assignment\n"); return 0; } diff --git a/src/modules/pv/pv_trans.c b/src/modules/pv/pv_trans.c index 2cedfc2416f..b5017433fb0 100644 --- a/src/modules/pv/pv_trans.c +++ b/src/modules/pv/pv_trans.c @@ -2762,7 +2762,7 @@ int tr_eval_val(struct sip_msg *msg, tr_param_t *tp, int subtype, _tr_parse_sparamx(_p, _p0, _tp, _spec, _ps, _in, _s, 0) /*! - * \brief Helper fuction to parse a string transformation + * \brief Helper function to parse a string transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3340,7 +3340,7 @@ char* tr_parse_string(str* in, trans_t *t) /*! - * \brief Helper fuction to parse a URI transformation + * \brief Helper function to parse a URI transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3463,7 +3463,7 @@ char* tr_parse_uri(str* in, trans_t *t) /*! - * \brief Helper fuction to parse a parameter transformation + * \brief Helper function to parse a parameter transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3590,7 +3590,7 @@ char* tr_parse_paramlist(str* in, trans_t *t) /*! - * \brief Helper fuction to parse a name-address transformation + * \brief Helper function to parse a name-address transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3643,7 +3643,7 @@ char* tr_parse_nameaddr(str* in, trans_t *t) } /*! - * \brief Helper fuction to parse a name-address transformation + * \brief Helper function to parse a name-address transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3704,7 +3704,7 @@ char* tr_parse_tobody(str* in, trans_t *t) } /*! - * \brief Helper fuction to parse a line transformation + * \brief Helper function to parse a line transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3799,7 +3799,7 @@ char* tr_parse_line(str* in, trans_t *t) } /*! - * \brief Helper fuction to parse urialias transformation + * \brief Helper function to parse urialias transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error @@ -3849,7 +3849,7 @@ char* tr_parse_urialias(str* in, trans_t *t) /*! - * \brief Helper fuction to parse val transformation + * \brief Helper function to parse val transformation * \param in parsed string * \param t transformation * \return pointer to the end of the transformation in the string - '}', null on error From 39ea7e2a5ac3c111baf763f0b30103966a35d9b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 17:11:22 +0200 Subject: [PATCH 064/101] pv_headers: use flags numbers below 32 --- src/modules/pv_headers/doc/functions.xml | 4 ++-- src/modules/pv_headers/doc/params.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/pv_headers/doc/functions.xml b/src/modules/pv_headers/doc/functions.xml index e0d38d47eae..b938f79d07e 100644 --- a/src/modules/pv_headers/doc/functions.xml +++ b/src/modules/pv_headers/doc/functions.xml @@ -9,7 +9,7 @@ ]> -
+
@@ -32,7 +32,7 @@ Applies the current XAVP headers state to the real headers. - and should be called only once per branch when the message is about to leave &kamailio;. + Should be called only once per branch when the message is about to leave &kamailio;. The following rules apply: diff --git a/src/modules/pv_headers/doc/params.xml b/src/modules/pv_headers/doc/params.xml index 2bc6ddcc979..2e237af8d05 100644 --- a/src/modules/pv_headers/doc/params.xml +++ b/src/modules/pv_headers/doc/params.xml @@ -74,7 +74,7 @@ modparam("pv_headers", "header_value_size", 512) Set <varname>header_collect_flag</varname> parameter ... -modparam("pv_headers", "header_collect_flag", 37) +modparam("pv_headers", "header_collect_flag", 17) ... @@ -95,7 +95,7 @@ modparam("pv_headers", "header_collect_flag", 37) Set <varname>header_apply_flag</varname> parameter ... -modparam("pv_headers", "header_apply_flag", 38) +modparam("pv_headers", "header_apply_flag", 18) ... From ded97f8a866c97f5152803d1ec24d4789566fb1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:20:13 +0200 Subject: [PATCH 065/101] ratelimit: typo unsuccesSful --- src/modules/ratelimit/rl_statistics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ratelimit/rl_statistics.c b/src/modules/ratelimit/rl_statistics.c index 7b9ea90a2c8..9c88ed74abf 100644 --- a/src/modules/ratelimit/rl_statistics.c +++ b/src/modules/ratelimit/rl_statistics.c @@ -272,7 +272,7 @@ static int parse_proc_net_line(char *line, int *ipAddress, int *rx_queue) /* strtol()'s specifications specify that the second parameter * is set to the first parameter when a number couldn't be - * parsed out. This means the parse was unsuccesful. */ + * parsed out. This means the parse was unsuccessful. */ if (nextNonNumericalChar == currColonLocation) { return 0; } From d3c2578940ad1a9f33c27f2b20d6f0c3b2beeac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:00:11 +0200 Subject: [PATCH 066/101] registrar: reword --- src/modules/registrar/doc/registrar_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/registrar/doc/registrar_admin.xml b/src/modules/registrar/doc/registrar_admin.xml index 6a8ba97ccfc..58647f42e4e 100644 --- a/src/modules/registrar/doc/registrar_admin.xml +++ b/src/modules/registrar/doc/registrar_admin.xml @@ -77,7 +77,7 @@ addresses. - The public GRUU is build based on the '+sip.instance' + The public GRUU is built based on the '+sip.instance' UUID parameter as recommended by RFC. @@ -322,7 +322,7 @@ modparam("registrar", "realm_prefix", "sip.") The parameter controls how lookup function processes multiple contacts. If there are multiple contacts for the given username in usrloc and this parameter is set to 1, Request-URI will be - overwritten with the highest-q rated contact and the rest will be + overwritten with the highest-q rated contact. The rest will be appended to sip_msg structure and can be later used by tm for forking. If the parameter is set to 0, only Request-URI will be overwritten with the highest-q rated contact and the rest will be left unprocessed. From 3748949fd2fa8e56092b1c3d41e0142fc977f434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:29:58 +0200 Subject: [PATCH 067/101] rls: typos --- src/modules/rls/doc/rls_admin.xml | 6 +++--- src/modules/rls/resource_notify.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/rls/doc/rls_admin.xml b/src/modules/rls/doc/rls_admin.xml index 8a1c03963a4..af5c0399cae 100644 --- a/src/modules/rls/doc/rls_admin.xml +++ b/src/modules/rls/doc/rls_admin.xml @@ -15,7 +15,7 @@
Overview - The modules is a Resource List Server implementation following the + The module is a Resource List Server implementation following the specification in RFC 4662 and RFC 4826. @@ -30,7 +30,7 @@ - It handles subscription to lists in an event independent way.The default event + It handles subscription to lists in an event independent way. The default event is presence, but if some other events are to be handled by the server, they should be added using the module parameter "rls_events". @@ -833,7 +833,7 @@ Within event_route[xhttp:request]: Installation The module requires 2 tables in &kamailio; database: rls_presentity - and rls_watchers.The SQL syntax to create them can be found in + and rls_watchers. The SQL syntax to create them can be found in rls-create.sql script in the database directories in the kamailio/scripts folder. You can also find the complete database documentation on the diff --git a/src/modules/rls/resource_notify.c b/src/modules/rls/resource_notify.c index 0343a5c6653..37732575fe2 100644 --- a/src/modules/rls/resource_notify.c +++ b/src/modules/rls/resource_notify.c @@ -687,7 +687,7 @@ int ki_rls_handle_notify(sip_msg_t* msg) LM_DBG("presence dialog record not found\n"); /* if it is a NOTIFY for a terminated SUBSCRIBE dialog in RLS, then * the module might not have the dialog structure anymore - * - just send 200ok, it is harmless + * - just send 200 OK, it is harmless */ if(auth_flag==TERMINATED_STATE) goto done; From be8fa758848a1c73b1d4c5e85452c551d3610cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:12:12 +0200 Subject: [PATCH 068/101] rr: typos --- src/modules/rr/doc/rr_admin.xml | 2 +- src/modules/rr/doc/rr_devel.xml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/rr/doc/rr_admin.xml b/src/modules/rr/doc/rr_admin.xml index 98bad1239f2..691e3d07df8 100644 --- a/src/modules/rr/doc/rr_admin.xml +++ b/src/modules/rr/doc/rr_admin.xml @@ -43,7 +43,7 @@ header will be used - Record-Route parameters mirroring are reinforced by RFC 3261 (see 12.1.1 UAS behavior). - For this purpose, the modules offers the following functions: + For this purpose, the module offers the following functions: diff --git a/src/modules/rr/doc/rr_devel.xml b/src/modules/rr/doc/rr_devel.xml index 9d16ea0791f..516eb5a3aab 100644 --- a/src/modules/rr/doc/rr_devel.xml +++ b/src/modules/rr/doc/rr_devel.xml @@ -94,7 +94,7 @@ record_route_advertised_address("1.2.3.4:5090");
- <function moreinfo="none">add_rr_param( msg, param)</function> + <function moreinfo="none">add_rr_param(msg, param)</function> Adds a parameter to the requests's Record-Route URI (param must be in @@ -122,7 +122,7 @@ record_route_advertised_address("1.2.3.4:5090");
- <function moreinfo="none">check_route_param( msg, re)</function> + <function moreinfo="none">check_route_param(msg, re)</function> The function checks for the request msg if the URI @@ -150,7 +150,7 @@ record_route_advertised_address("1.2.3.4:5090");
- <function moreinfo="none">is_direction( msg, dir)</function> + <function moreinfo="none">is_direction(msg, dir)</function> The function checks the flow direction of the request @@ -182,7 +182,7 @@ record_route_advertised_address("1.2.3.4:5090");
- <function moreinfo="none">get_route_param( msg, name, val)</function> + <function moreinfo="none">get_route_param(msg, name, val)</function> The function search in to the msg's Route header @@ -217,7 +217,7 @@ record_route_advertised_address("1.2.3.4:5090");
- <function moreinfo="none">register_rrcb( callback, param)</function> + <function moreinfo="none">register_rrcb(callback, param)</function> The function register a new callback (along with its parameter). The From e6bf6117e743a7d56f6955c07f497eee1a95d403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:17:28 +0200 Subject: [PATCH 069/101] rtpengine: formatting --- src/modules/rtpengine/doc/rtpengine_admin.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/rtpengine/doc/rtpengine_admin.xml b/src/modules/rtpengine/doc/rtpengine_admin.xml index 98ebea11f82..85b1a0fbe8c 100644 --- a/src/modules/rtpengine/doc/rtpengine_admin.xml +++ b/src/modules/rtpengine/doc/rtpengine_admin.xml @@ -2842,7 +2842,7 @@ if(rtpengine_query_v("j", "$var(rdata)")) { internally based on message type and method which one to execute. - It can take the same parameters as rtpengine_offer(). + It can take the same parameters as rtpengine_offer(). The flags parameter to rtpengine_manage() can be a configuration variable containing the flags as a string. @@ -2923,7 +2923,7 @@ rtpengine_manage(); metadata from SDP. - It can take the same parameters as rtpengine_manage(). + It can take the same parameters as rtpengine_manage(). The flags parameter to start_recording can be a configuration variable containing the flags as a string. The call-id flag can be used to start recording for a different call. @@ -2952,7 +2952,7 @@ start_recording(); which offers an alternative for call recording. - It can take the same parameters as rtpengine_manage(). + It can take the same parameters as rtpengine_manage(). The flags parameter to start_recording can be a configuration variable containing the flags as a string. The call-id flag can be used to stop recording for a different call. From 1731b39a5c84932a0e9c93c335d1dee32ccf4a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:17:14 +0200 Subject: [PATCH 070/101] rtpproxy: typo --- src/modules/rtpproxy/doc/rtpproxy_admin.xml | 2 +- src/modules/rtpproxy/test/kamailio.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/rtpproxy/doc/rtpproxy_admin.xml b/src/modules/rtpproxy/doc/rtpproxy_admin.xml index 11af7e0de17..10b2291c88d 100644 --- a/src/modules/rtpproxy/doc/rtpproxy_admin.xml +++ b/src/modules/rtpproxy/doc/rtpproxy_admin.xml @@ -653,7 +653,7 @@ rtpproxy_destroy(); internally based on message type and method which one to execute. - It can take the same parameters as rtpproxy_offer(). + It can take the same parameters as rtpproxy_offer(). The flags parameter to rtpproxy_manage() can be a configuration variable containing the flags as a string. diff --git a/src/modules/rtpproxy/test/kamailio.cfg b/src/modules/rtpproxy/test/kamailio.cfg index c71f53ab28b..16b25396272 100644 --- a/src/modules/rtpproxy/test/kamailio.cfg +++ b/src/modules/rtpproxy/test/kamailio.cfg @@ -97,7 +97,7 @@ modparam("mi_xmlrpc", "buffer_size", 8192) # ----------------- Settings for Dialog-Module --------------- # The Name of the Tag in the RR-Route-Header (default "did") modparam("dialog", "rr_param", "rtp") -# Flag to be used for marking if a dialog should be constructed for the current request (make sense only for initial requests). +# Flag to be used for marking if a dialog should be constructed for the current request (makes sense only for initial requests). modparam("dialog", "dlg_flag", 1) # The default dialog timeout (in seconds) if no custom one is set. Default value is "43200 (12 hours)". modparam("dialog", "default_timeout", 7230) From c964f4fc179620dd1b02cb29c027017bd77f768d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:29:43 +0200 Subject: [PATCH 071/101] =?UTF-8?q?ruxc:=20200ok=20=E2=86=92=20200=20OK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ruxc/doc/ruxc_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ruxc/doc/ruxc_admin.xml b/src/modules/ruxc/doc/ruxc_admin.xml index cef1443b441..dc557ad61de 100644 --- a/src/modules/ruxc/doc/ruxc_admin.xml +++ b/src/modules/ruxc/doc/ruxc_admin.xml @@ -205,7 +205,7 @@ modparam("ruxc", "http_reuse", 1)
<varname>http_retry</varname> (int) - How many times to retry if the HTTP request does not get a 200ok response. + How many times to retry if the HTTP request does not get a 200 OK response. From 91af07a4fd936c934533afe53ea8474373f84181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:38:40 +0200 Subject: [PATCH 072/101] seas: missing space --- src/modules/seas/doc/seas_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/seas/doc/seas_admin.xml b/src/modules/seas/doc/seas_admin.xml index 2d734f6b6ae..bb89220e345 100644 --- a/src/modules/seas/doc/seas_admin.xml +++ b/src/modules/seas/doc/seas_admin.xml @@ -503,7 +503,7 @@ listen = udp:localhost:5060 com.voztele.javax.sip.SER_ADDRESS This specifies the IP and port in which the &kamailio; is - listening for Application Servers to connect and register.This + listening for Application Servers to connect and register. This specifies the IP and port in which the &kamailio; is listening for Application Servers to connect and register. From f1147fbcbe578b7a4f8f5523fa474aab8a4d8c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:41:31 +0200 Subject: [PATCH 073/101] sipdump: typo fuNction --- src/modules/sipdump/sipdump_pcap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/sipdump/sipdump_pcap.c b/src/modules/sipdump/sipdump_pcap.c index 0db2697790f..15e72403d70 100644 --- a/src/modules/sipdump/sipdump_pcap.c +++ b/src/modules/sipdump/sipdump_pcap.c @@ -31,7 +31,7 @@ extern int sipdump_mode; /* structures related to PCAP headers imported from open source Asterisk project - * fuction to write to PCAP file adapted for internal structures + * function to write to PCAP file adapted for internal structures * source: res_pjsip_logger.c - License GPLv2 - Copyright (C) Digium, Inc.*/ /* PCAP Header */ From 4ecfcc1261e314801b83741ccd6908e77f54d402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:29:22 +0200 Subject: [PATCH 074/101] siptrace: typo --- src/modules/siptrace/doc/siptrace_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/siptrace/doc/siptrace_admin.xml b/src/modules/siptrace/doc/siptrace_admin.xml index 430c35b4f81..1153c93dab1 100644 --- a/src/modules/siptrace/doc/siptrace_admin.xml +++ b/src/modules/siptrace/doc/siptrace_admin.xml @@ -16,7 +16,7 @@
Overview - The SIPtrace module offer a possibility to store incoming and outgoing SIP + The SIPtrace module offers a possibility to store incoming and outgoing SIP messages in a database and/or duplicate to the capturing server (using HEP, the Homer encapsulation protocol, or plain SIP mode). Since version 5.3.0 new levels of tracing are available. Transactions and dialogs can be traced. @@ -697,7 +697,7 @@ modparam("siptrace", "trace_dialog_spiral", 1) Functions
- <function moreinfo="none">sip_trace([address][,correlation_id][,mode])</function> + <function moreinfo="none">sip_trace([address][, correlation_id][, mode])</function> Store or forward the current processed SIP message/transaction/dialog in database. From 6b5a0af195d17ac9ba116fe7c60268139c3ac6a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Mon, 19 Dec 2022 13:22:35 +0200 Subject: [PATCH 075/101] siputils: typos --- src/modules/siputils/doc/siputils_admin.xml | 12 ++++++------ src/modules/siputils/siputils.c | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/modules/siputils/doc/siputils_admin.xml b/src/modules/siputils/doc/siputils_admin.xml index 0d15db546cf..d887c1b260f 100644 --- a/src/modules/siputils/doc/siputils_admin.xml +++ b/src/modules/siputils/doc/siputils_admin.xml @@ -16,7 +16,7 @@
Overview - This module implement various functions and checks related to SIP message + This module implements various functions and checks related to SIP message handling and URI handling. @@ -120,7 +120,7 @@ modparam("siputils", "options_accept_encoding", "gzip") First char of this field must be set to a value which is not used - inside username,password or other fields of contact. Otherwise it + inside username, password or other fields of contact. Otherwise it is possible for the decoding step to fail/produce wrong results. @@ -270,7 +270,7 @@ modparam("siputils", "e164_max_len", 20) This function checks if the request method is OPTIONS and if the request URI does not contain a username. If both - is true the request will be answered stateless with + are true the request will be answered stateless with 200 OK and the capabilities from the modules parameters. @@ -284,7 +284,7 @@ modparam("siputils", "e164_max_len", 20) you should not call this function outside the myself check because in this case the function could answer OPTIONS requests which are sent to you as outbound proxy but with another - destination then your proxy (this check is currently missing + destination than your proxy (this check is currently missing in the function). @@ -383,7 +383,7 @@ if (uri_param("param1")) {
- <function moreinfo="none">uri_param(param,value)</function> + <function moreinfo="none">uri_param(param, value)</function> Find if Request URI has a given parameter with matching value @@ -754,7 +754,7 @@ if (is_alphanumex("$rU", "+.-_")) {
- <function moreinfo="none">encode_contact(encoding_prefix,hostpart)</function> + <function moreinfo="none">encode_contact(encoding_prefix, hostpart)</function> This function will encode uri-s inside Contact header in the following diff --git a/src/modules/siputils/siputils.c b/src/modules/siputils/siputils.c index 5db1a67cfd9..139a334f790 100644 --- a/src/modules/siputils/siputils.c +++ b/src/modules/siputils/siputils.c @@ -31,7 +31,7 @@ * \defgroup siputils SIPUTILS :: Various SIP message handling functions * * - * This module implement various functions and checks related to + * This module implements various functions and checks related to * SIP message handling and URI handling. * * This module provides a function to answer OPTIONS requests From 97cacd336057a019d1c86e1bdae7410eec1a9d3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 14:29:55 +0200 Subject: [PATCH 076/101] sl: typos --- src/modules/sl/doc/sl.xml | 2 +- src/modules/sl/sl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/sl/doc/sl.xml b/src/modules/sl/doc/sl.xml index e1535cb4111..8f823dfbd83 100644 --- a/src/modules/sl/doc/sl.xml +++ b/src/modules/sl/doc/sl.xml @@ -64,7 +64,7 @@ matter to you, better use stateful processing (TM module) for INVITE processing. Particularly, the problem happens when a UA sends an INVITE which already has a to-tag in it (e.g., a - re-INVITE) and the server want to reply to it. Then, it will keep the + re-INVITE) and the server wants to reply to it. Then, it will keep the current to-tag, which will be mirrored in ACK. &kamailio; will not see its signature and forward the ACK downstream. Caused harm is not bad, just a useless ACK is forwarded. diff --git a/src/modules/sl/sl.h b/src/modules/sl/sl.h index d3530c849ae..f951310dfe5 100644 --- a/src/modules/sl/sl.h +++ b/src/modules/sl/sl.h @@ -70,7 +70,7 @@ int sl_register_callback(sl_cbelem_t *cbe); void sl_run_callbacks(unsigned int type, struct sip_msg *req, int code, char *reason, str *reply, struct dest_info *dst); -/* prototypes for SL API funtions */ +/* prototypes for SL API functions */ typedef int (*get_reply_totag_f)(struct sip_msg *msg, str *tag); typedef int (*send_reply_f)(struct sip_msg *msg, int code, str *reason); typedef int (*sl_send_reply_f)(struct sip_msg *msg, int code, char *reason); From c6b6d62f5015299dd657a67f207bb7cebf2b3224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:53:37 +0200 Subject: [PATCH 077/101] sms: typo a/an SMS --- src/modules/sms/doc/params.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/sms/doc/params.xml b/src/modules/sms/doc/params.xml index 509238a4afd..771a6993976 100644 --- a/src/modules/sms/doc/params.xml +++ b/src/modules/sms/doc/params.xml @@ -56,7 +56,7 @@ modem_param = name "=" value - r=retry (optional) - How many times to try to re-send a + r=retry (optional) - How many times to try to re-send an SMS that reported error. Default is twice. From d7bc50433ca5eb56886484941038db8b14381f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:20:38 +0200 Subject: [PATCH 078/101] snmpstats: typos --- src/modules/snmpstats/doc/snmpstats_admin.xml | 2 +- src/modules/snmpstats/kamailioNet.c | 8 ++++---- src/modules/snmpstats/mibs/KAMAILIO-TC | 2 +- src/modules/snmpstats/snmpSIPStatusCodesTable.c | 2 +- src/modules/snmpstats/snmp_statistics.c | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/snmpstats/doc/snmpstats_admin.xml b/src/modules/snmpstats/doc/snmpstats_admin.xml index 331f14d2b25..b14721bbf24 100644 --- a/src/modules/snmpstats/doc/snmpstats_admin.xml +++ b/src/modules/snmpstats/doc/snmpstats_admin.xml @@ -266,7 +266,7 @@ - registrarServer, redirectServer, proxyServer, userAgent, edgeproxyServer, sipcaptureServer,other + registrarServer, redirectServer, proxyServer, userAgent, edgeproxyServer, sipcaptureServer, other diff --git a/src/modules/snmpstats/kamailioNet.c b/src/modules/snmpstats/kamailioNet.c index 4b97c9693d2..15a0d8f21c8 100644 --- a/src/modules/snmpstats/kamailioNet.c +++ b/src/modules/snmpstats/kamailioNet.c @@ -297,7 +297,7 @@ int handle_kamailioNetTcpConnEstablished(netsnmp_mib_handler *handler, netsnmp_handler_registration *reginfo, netsnmp_agent_request_info *reqinfo, netsnmp_request_info *requests) { - /* We are never called for a GETNEXT if it's registered as a + /* We are never called for a GETNEXT if it's registered as an "instance", as it's "magically" handled for us. */ /* an instance handler also only hands us one request at a time, so @@ -448,7 +448,7 @@ int handle_kamailioNetTcpConnReject(netsnmp_mib_handler *handler, netsnmp_handler_registration *reginfo, netsnmp_agent_request_info *reqinfo, netsnmp_request_info *requests) { - /* We are never called for a GETNEXT if it's registered as a + /* We are never called for a GETNEXT if it's registered as an "instance", as it's "magically" handled for us. */ /* an instance handler also only hands us one request at a time, so @@ -477,7 +477,7 @@ int handle_kamailioNetTcpEnabled(netsnmp_mib_handler *handler, netsnmp_handler_registration *reginfo, netsnmp_agent_request_info *reqinfo, netsnmp_request_info *requests) { - /* We are never called for a GETNEXT if it's registered as a + /* We are never called for a GETNEXT if it's registered as an "instance", as it's "magically" handled for us. */ /* an instance handler also only hands us one request at a time, so @@ -540,7 +540,7 @@ int handle_kamailioNetTcpAsync(netsnmp_mib_handler *handler, tcp_options_get(&t); value = t.async; - /* We are never called for a GETNEXT if it's registered as a + /* We are never called for a GETNEXT if it's registered as an "instance", as it's "magically" handled for us. */ /* an instance handler also only hands us one request at a time, so diff --git a/src/modules/snmpstats/mibs/KAMAILIO-TC b/src/modules/snmpstats/mibs/KAMAILIO-TC index d43b4575d9d..4240460a09c 100644 --- a/src/modules/snmpstats/mibs/KAMAILIO-TC +++ b/src/modules/snmpstats/mibs/KAMAILIO-TC @@ -108,7 +108,7 @@ KamailioSIPMethodIdentifier ::= TEXTUAL-CONVENTION MAY return/accept a method identifier value other than those defined by IANA. That system MUST ensure no collisions with officially assigned - method identifier values and MUST provide a + method identifier values and MUST provide an identifier to method name mapping via a mechanism like sipMethodSupportedTable." SYNTAX Unsigned32 (1..4294967295) diff --git a/src/modules/snmpstats/snmpSIPStatusCodesTable.c b/src/modules/snmpstats/snmpSIPStatusCodesTable.c index f68eaaa44af..ff01449c917 100644 --- a/src/modules/snmpstats/snmpSIPStatusCodesTable.c +++ b/src/modules/snmpstats/snmpSIPStatusCodesTable.c @@ -303,7 +303,7 @@ kamailioSIPStatusCodesTable_context *kamailioSIPStatusCodesTable_create_row( if(!ctx) return NULL; - /* The *_extract_index funtion already validates the indices, so we + /* The *_extract_index function already validates the indices, so we * don't need to do any further evaluations here. */ if(kamailioSIPStatusCodesTable_extract_index(ctx, hdr)) { if(NULL != ctx->index.oids) diff --git a/src/modules/snmpstats/snmp_statistics.c b/src/modules/snmpstats/snmp_statistics.c index ffba4a1bb94..503d16d43b2 100644 --- a/src/modules/snmpstats/snmp_statistics.c +++ b/src/modules/snmpstats/snmp_statistics.c @@ -269,7 +269,7 @@ static int parse_proc_net_line(char *line, int *ipAddress, int *rx_queue) /* strtol()'s specifications specify that the second parameter * is set to the first parameter when a number couldn't be - * parsed out. This means the parse was unsuccesful. */ + * parsed out. This means the parse was unsuccessful. */ if(nextNonNumericalChar == currColonLocation) { return 0; } From 9c7f02d138b8d28b9662862f0b14abb9e69b7459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:21:03 +0200 Subject: [PATCH 079/101] sst: clarify that sst_flag must be set and typos --- src/modules/sst/doc/sst_admin.xml | 8 ++++---- src/modules/sst/sst_handlers.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/sst/doc/sst_admin.xml b/src/modules/sst/doc/sst_admin.xml index a82132bd6ef..ff5ba8a46db 100644 --- a/src/modules/sst/doc/sst_admin.xml +++ b/src/modules/sst/doc/sst_admin.xml @@ -26,7 +26,7 @@ The sst module provides a way to update the dialog expiry timer based on the SIP INVITE/200 OK Session-Expires header value. You can use the sst - module in an &kamailio; proxy to allow freeing of local + module in a &kamailio; proxy to allow freeing of local resources of dead calls. You can also use the sst module to validate the @@ -156,7 +156,7 @@ <varname>enable_stats</varname> (integer) If the statistics support should be enabled or - not. Via statistic variables, the module provide + not. Via statistic variables, the module provides information about the dialog processing. Set it to zero to disable or to non-zero to enable it. @@ -311,7 +311,7 @@ route { ... if (method=="INVITE") { setflag(5); # set the dialog flag - setflag(6); # Set the sst flag + setflag(6); # set the sst flag } ... } @@ -404,7 +404,7 @@ route {
Installation and Running - Just load the module and remember to set the timeout_avp value. + Just load the module and remember to set the timeout_avp and sst_flag values.
diff --git a/src/modules/sst/sst_handlers.c b/src/modules/sst/sst_handlers.c index 55010baaee2..a1f425d0f4b 100644 --- a/src/modules/sst/sst_handlers.c +++ b/src/modules/sst/sst_handlers.c @@ -630,7 +630,7 @@ int ki_sst_check_min(struct sip_msg *msg, int flag) * First see if there is an Session-Expires: header. If there * is, also look for a MIN-SE: header. If there is, use the * minimum value of the two to compare with srt1. All MUST not - * be less then 90 and 1800 is recomended. See RCF section 4. + * be less than 90 and 1800 is recomended. See RCF section 4. */ if ((result = parse_session_expires(msg, &se)) != parse_sst_success) { if (result != parse_sst_header_not_found) { From c6005d6b42085db390d0bb951f994e7fd15a5fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:27:09 +0200 Subject: [PATCH 080/101] stirshaken: typo wHich --- src/modules/stirshaken/stirshaken_mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/stirshaken/stirshaken_mod.c b/src/modules/stirshaken/stirshaken_mod.c index b64396b0ab7..3b5a1fbb397 100644 --- a/src/modules/stirshaken/stirshaken_mod.c +++ b/src/modules/stirshaken/stirshaken_mod.c @@ -589,7 +589,7 @@ static int ki_stirshaken_check_identity(sip_msg_t *msg) /** * Verify SIP Identity Header (involves call from libstirshaken to cache_callback, - * wich will supply requested certificate from cache [if configured to do so] + * which will supply requested certificate from cache [if configured to do so] * or will let libstirshaken to perform HTTP(s) GET request to download certificate). * Verify a call with STIR-Shaken. * From c35260609470a5c546c90c2df5b461ef2d844ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 11:20:50 +0200 Subject: [PATCH 081/101] systemdops: typo --- src/modules/systemdops/doc/systemdops_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/systemdops/doc/systemdops_admin.xml b/src/modules/systemdops/doc/systemdops_admin.xml index 7af4cc3d954..9ae0d9d8184 100644 --- a/src/modules/systemdops/doc/systemdops_admin.xml +++ b/src/modules/systemdops/doc/systemdops_admin.xml @@ -55,7 +55,7 @@
Systemd Notifications - If loaded, the module will generated systemd notifications when &kamailio; + If loaded, the module will generate systemd notifications when &kamailio; starts and when &kamailio; shuts down. The content of these notifications (sent with sd_notify(...)) are shown in the next example (_PID_ is replaced by the PID of the main process). From f835d15223e475e01cc3aa95b9691a0a7a84138d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:58:45 +0200 Subject: [PATCH 082/101] textops: typos --- src/modules/textops/doc/textops_admin.xml | 34 +++++++++++------------ 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/modules/textops/doc/textops_admin.xml b/src/modules/textops/doc/textops_admin.xml index dbca57e5f0a..2f9c12af954 100644 --- a/src/modules/textops/doc/textops_admin.xml +++ b/src/modules/textops/doc/textops_admin.xml @@ -144,7 +144,7 @@ if ( search_body("[Ss][Ii][Pp]") ) { /*....*/ };
- <function moreinfo="none">search_str(text. re)</function> + <function moreinfo="none">search_str(text, re)</function> Searches for the re in the body of the message. @@ -811,7 +811,7 @@ if ( subst_hf("From", "/:test@/:best@/", "a") ) { /*....*/ };
- <function moreinfo="none">set_body(txt,content_type)</function> + <function moreinfo="none">set_body(txt, content_type)</function> Set body to a SIP message. @@ -845,7 +845,7 @@ set_body("test", "text/plain");
- <function moreinfo="none">set_reply_body(txt,content_type)</function> + <function moreinfo="none">set_reply_body(txt, content_type)</function> Set body to a SIP reply to be generated by &kamailio;. @@ -950,7 +950,7 @@ append_to_reply("Foo: $rm at $Ts\r\n"); append_hf(txt[, hdr]) - Appends 'txt' as header at the end of the all headers, or after + Appends 'txt' as header at the end of all the headers, or after last header named 'hdr' if the second parameter is provided. Meaning of the parameters is as follows: @@ -989,7 +989,7 @@ append_hf("From-username: $fU\r\n", "Call-ID"); Inserts 'txt' as header before the first header field, or before - first header named 'hdr'if the second parameter is provided. + first header named 'hdr' if the second parameter is provided. Meaning of the parameters is as follows: @@ -1487,7 +1487,7 @@ if(remove_hf_exp("^P-", "^P-Keep-")) remove_hf_exp_pv(expmatch, expskip) - Same as remove_hf_exp() function, but the parameters can contain variabes. + Same as remove_hf_exp() function, but the parameters can contain variables. <function>remove_hf_exp_pv</function> usage @@ -1592,7 +1592,7 @@ if(remove_hf_match("X-Info", "in", "^data")) { The function returns true if the SIP message - has a body attached. The checked includes also the + has a body attached. The check includes also the Content-Length header presence and value. @@ -1896,7 +1896,7 @@ if (str_ifind("$rU", "Alice")) {
- <function moreinfo="none">set_body_multipart([txt,content_type][,boundary])</function> + <function moreinfo="none">set_body_multipart([txt, content_type][, boundary])</function> Set multipart body to a SIP message. If called with no parameters, will convert @@ -1924,7 +1924,7 @@ if (str_ifind("$rU", "Alice")) { This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE. - The core will take care of the last boundary ending "--". Detecting which one is + The core will take care of the last boundary ending with "--", detecting which one is the last and fixing the others if needed. @@ -1961,7 +1961,7 @@ text
- <function moreinfo="none">append_body_part(txt,content_type[, content_disposition])</function> + <function moreinfo="none">append_body_part(txt, content_type[, content_disposition])</function> Append a part on multipart body SIP message. Will use "unique-boundary-1" as boundary. @@ -1988,7 +1988,7 @@ text This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE. - The core will take care of the last boundary ending "--". Detecting wich one is + The core will take care of the last boundary ending with "--", detecting which one is the last and fixing the others if needed. @@ -2017,7 +2017,7 @@ Content-Disposition: signal;handling=required - If other headers are wanted to be added for a body part, they can be + If other headers should be added to a MIME body part, they can be appended after the value of the content-type parameter, separated by `\r\n` (at the very end do not add the '\r\n'). @@ -2047,7 +2047,7 @@ Content-Disposition: signal;handling=required
- <function moreinfo="none">append_body_part_hex(txt,content_type[, content_disposition])</function> + <function moreinfo="none">append_body_part_hex(txt, content_type[, content_disposition])</function> Append a part on multipart body SIP message, with the content provided @@ -2078,7 +2078,7 @@ Content-Disposition: signal;handling=required This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE. - The core will take care of the last boundary ending "--". Detecting wich one is + The core will take care of the last boundary ending with "--", detecting which one is the last and fixing the others if needed. @@ -2106,7 +2106,7 @@ kamailio - If other headers are wanted to be added for a body part, see the docs + If other headers should be added to a MIME body part, see the docs for append_body_part(...) function.
@@ -2204,7 +2204,7 @@ get_body_part("application/vnd.cirpack.isdn-ext", "$var(hbody)"); This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
- The core will take care of the last boundary ending "--". Detecting wich one is + The core will take care of the last boundary ending with "--", detecting which one is the last and fixing the others if needed. @@ -2227,7 +2227,7 @@ msg_apply_changes(); regex_substring(itext, regexp, mindex, mcount, dpv) - Search in text with given regular expression then sets dpv pseudo-variable + Search in text with given regular expression then set dpv pseudo-variable with the matched token at provided index. Meaning of the parameters is as follows: From 458bf447bb70be38074cc9e95cca5ffd14f26e4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 12:12:22 +0200 Subject: [PATCH 083/101] =?UTF-8?q?textopsx:=20typo=20build=20=E2=86=92=20?= =?UTF-8?q?built?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/textopsx/doc/functions.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/textopsx/doc/functions.xml b/src/modules/textopsx/doc/functions.xml index 7500cbaa853..32f801e2df6 100644 --- a/src/modules/textopsx/doc/functions.xml +++ b/src/modules/textopsx/doc/functions.xml @@ -17,7 +17,7 @@ The function returns true (1) on success. If it is failure before the - new content is build, the function returns false (-1), the old content + new content is built, the function returns false (-1), the old content is still in place. If parsing of the new content is failing, the function stops executions of the config file (the internal structure is no longer valid for config processing, like it happens when a From e420a2714e44020615aee6e899ccc71e164de615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:23:39 +0200 Subject: [PATCH 084/101] tls: typos --- src/modules/tls/tls_domain.c | 2 +- src/modules/tls/tls_init.h | 2 +- src/modules/tls/tls_server.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/tls/tls_domain.c b/src/modules/tls/tls_domain.c index c967f5b44d7..c524aac750d 100644 --- a/src/modules/tls/tls_domain.c +++ b/src/modules/tls/tls_domain.c @@ -397,7 +397,7 @@ static int ksr_tls_fill_missing(tls_domain_t* d, tls_domain_t* parent) * @param ctx SSL context * @param larg ? * @param parg ? - * @return return 0 on succes, <0 on critical error + * @return return 0 on success, <0 on critical error */ typedef int (*per_ctx_cbk_f)(SSL_CTX* ctx, long larg, void* parg); diff --git a/src/modules/tls/tls_init.h b/src/modules/tls/tls_init.h index c0e34f3a730..5eb780cedb6 100644 --- a/src/modules/tls/tls_init.h +++ b/src/modules/tls/tls_init.h @@ -18,7 +18,7 @@ /*! * \file - * \brief Kamailio TLS support :: OpenSSL initialization funtions + * \brief Kamailio TLS support :: OpenSSL initialization functions * \ingroup tls * Module: \ref tls */ diff --git a/src/modules/tls/tls_server.c b/src/modules/tls/tls_server.c index 00686a07ddf..11e8d09a8fc 100644 --- a/src/modules/tls/tls_server.c +++ b/src/modules/tls/tls_server.c @@ -606,7 +606,7 @@ static int tls_shutdown(struct tcp_connection *c) DBG("TLS shutdown successful\n"); return 0; } else if (ret == 0) { - DBG("First phase of 2-way handshake completed succesfuly\n"); + DBG("First phase of 2-way handshake completed successfully\n"); return 0; } else { err = SSL_get_error(ssl, ret); From e4d3c56d71a92d65282a35ca64cfd85ed7d77562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:26:09 +0200 Subject: [PATCH 085/101] tls_wolfssl: typos --- src/modules/tls_wolfssl/tls_domain.c | 2 +- src/modules/tls_wolfssl/tls_init.h | 2 +- src/modules/tls_wolfssl/tls_server.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/tls_wolfssl/tls_domain.c b/src/modules/tls_wolfssl/tls_domain.c index 173a1e7f72c..212ac6bc05b 100644 --- a/src/modules/tls_wolfssl/tls_domain.c +++ b/src/modules/tls_wolfssl/tls_domain.c @@ -345,7 +345,7 @@ static int ksr_tls_fill_missing(tls_domain_t* d, tls_domain_t* parent) * @param ctx SSL context * @param larg ? * @param parg ? - * @return return 0 on succes, <0 on critical error + * @return return 0 on success, <0 on critical error */ typedef int (*per_ctx_cbk_f)(WOLFSSL_CTX* ctx, long larg, void* parg); diff --git a/src/modules/tls_wolfssl/tls_init.h b/src/modules/tls_wolfssl/tls_init.h index 319e8a4d107..ec3af7081b3 100644 --- a/src/modules/tls_wolfssl/tls_init.h +++ b/src/modules/tls_wolfssl/tls_init.h @@ -18,7 +18,7 @@ /*! * \file - * \brief Kamailio TLS support :: OpenSSL initialization funtions + * \brief Kamailio TLS support :: OpenSSL initialization functions * \ingroup tls * Module: \ref tls */ diff --git a/src/modules/tls_wolfssl/tls_server.c b/src/modules/tls_wolfssl/tls_server.c index 30162cc13e3..bfb23bb9823 100644 --- a/src/modules/tls_wolfssl/tls_server.c +++ b/src/modules/tls_wolfssl/tls_server.c @@ -556,7 +556,7 @@ static int tls_shutdown(struct tcp_connection *c) DBG("TLS shutdown successful\n"); return 0; } else if (ret == 0) { - DBG("First phase of 2-way handshake completed succesfuly\n"); + DBG("First phase of 2-way handshake completed successfully\n"); return 0; } else { err = wolfSSL_get_error(ssl, ret); From 2a84887593b03394262cc60df90883b3c97cbbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:00:50 +0200 Subject: [PATCH 086/101] tm: typos --- src/modules/tm/doc/params.xml | 10 +++++----- src/modules/tm/doc/tm.xml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/modules/tm/doc/params.xml b/src/modules/tm/doc/params.xml index a6e3d995678..e19d709e5a8 100644 --- a/src/modules/tm/doc/params.xml +++ b/src/modules/tm/doc/params.xml @@ -298,7 +298,7 @@ modparam("tm", "restart_fr_on_each_reply", 0)
<varname>auto_inv_100</varname> (integer) - If set (default) tm will automatically send and 100 reply to INVITEs. + If set (default) tm will automatically send a 100 reply to INVITEs. Setting it to 0 can be used to enable first running some tests or @@ -577,7 +577,7 @@ modparam("tm", "blst_503_max_timeout", 604800) Check parser/msg_parser.h for farther details. - Change the value carefully, because requests that doesn't get + Change the value carefully, because requests that don't get a provisional response (everything but INVITE) can easily cause the next hop to be inserted into the blocklist by mistake. For example the next hop is a proxy, it is alive, @@ -1581,15 +1581,15 @@ modparam("tm", "exec_time_check", 0)
<varname>reply_relay_mode</varname> (int) - If set to 1, a received 200ok response that was suspeneded is no + If set to 1, a received 200 OK response that was suspeneded is no longer forwarded in the transactional context if another final - response was forward while 200ok was suspended. Forwarding the 200ok, + response was forward while 200 OK was suspended. Forwarding the 200 OK, even it was received first, results in overwritting the transaction response buffer that can impact matching of incoming ACKs. Set it to 0 in order to disable this behaviour and attempt to forward - suspended 200ok in the transaction context. This was the behaviour + suspended 200 OK in the transaction context. This was the behaviour before the commit 18410da0. diff --git a/src/modules/tm/doc/tm.xml b/src/modules/tm/doc/tm.xml index 918cc89f82d..ba9fcabac6a 100644 --- a/src/modules/tm/doc/tm.xml +++ b/src/modules/tm/doc/tm.xml @@ -163,7 +163,7 @@ also known as the q value. The q value is a floating point number in a range 0 to 1.0. The higher the q value number, the more priority is given to the particular branch in the destination set. - Branches with q value 1.0 have maximum priority, such branches should be always + Branches with q value 1.0 have maximum priority, such branches should always be tried first in serial forking. Branches with q value 0 have the lowest priority and they should by tried after all other branches with higher priority in the destination set. @@ -334,7 +334,7 @@ failure_route["serial"] Possibly, performance could be improved by not parsing - non-INVITEs, as they do not be replied with 100, and do not + non-INVITEs, as they are not replied with 100, and do not result in ACK/CANCELs, and other things which take parsing. However, we need to rethink whether we don't need parsed headers later for something else. Remember, when we From 29ee02cdb24018c220992b8951499bc2af531343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:11:39 +0200 Subject: [PATCH 087/101] tmx: typo --- src/modules/tmx/doc/tmx_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/tmx/doc/tmx_admin.xml b/src/modules/tmx/doc/tmx_admin.xml index 69a18fd85f5..0f9ede1b5b6 100644 --- a/src/modules/tmx/doc/tmx_admin.xml +++ b/src/modules/tmx/doc/tmx_admin.xml @@ -209,7 +209,7 @@ if (t_reply_callid("123qaz", "5", "458", "Replied remotely")) { Flush the flags from current SIP message into the already created - transaction. It make sense only in routing block if the transaction was + transaction. It makes sense only in routing block if the transaction was created via t_newtran() and the flags have been altered since. @@ -235,7 +235,7 @@ t_flush_flags(); Flush the extended flags from current SIP message into the already created - transaction. It make sense only in routing block if the transaction was + transaction. It makes sense only in routing block if the transaction was created via t_newtran() and the extended flags have been altered since. From 1544e2192734315942ec7dc571bd5c2d560911b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:38:33 +0200 Subject: [PATCH 088/101] tsilo: typos --- src/modules/tsilo/doc/tsilo_admin.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/tsilo/doc/tsilo_admin.xml b/src/modules/tsilo/doc/tsilo_admin.xml index 2a258ba15cb..f762bd6b95c 100644 --- a/src/modules/tsilo/doc/tsilo_admin.xml +++ b/src/modules/tsilo/doc/tsilo_admin.xml @@ -17,11 +17,11 @@ Overview This module provides transaction storage for the &kamailioname;. It - stores in an internal table transactions for a Request-URI (R-URI) and add branches - to them later if new contacts for the AOR are added. + stores in an internal table transactions for a Request-URI (R-URI) and + adds branches to them later if new contacts for the AOR are added. - For each message, the modules stores Request-URI + For each message, the module stores Request-URI (R-URI), &uri; and the internal transaction index and label. From 73ab04d8ec37a5ed0307e419e6b6759323fe7f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:54:28 +0200 Subject: [PATCH 089/101] uac: typos --- src/modules/uac/doc/uac_admin.xml | 4 ++-- src/modules/uac/replace.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/uac/doc/uac_admin.xml b/src/modules/uac/doc/uac_admin.xml index 8996ede002f..68123e5af54 100644 --- a/src/modules/uac/doc/uac_admin.xml +++ b/src/modules/uac/doc/uac_admin.xml @@ -671,7 +671,7 @@ end Functions
- <function moreinfo="none">uac_replace_from(display,uri)</function> + <function moreinfo="none">uac_replace_from(display, uri)</function> Replace in FROM header the display name and @@ -772,7 +772,7 @@ uac_restore_from();
- <function moreinfo="none">uac_replace_to(display,uri)</function> + <function moreinfo="none">uac_replace_to(display, uri)</function> Replace in TO header the display name and diff --git a/src/modules/uac/replace.c b/src/modules/uac/replace.c index 36827aeb3ea..4527ff01c44 100644 --- a/src/modules/uac/replace.c +++ b/src/modules/uac/replace.c @@ -1054,7 +1054,7 @@ static void uac_on_load_callback(struct dlg_cell* dialog, int type, struct dlg_c * callback for both FROM and TO replace cases. This might be a bit * inefficient in cases where only one of the functions is used. But as * this applies only e.g. to a proxy restart with runnning dialogs, it - * does not matter. The replace_callback function will just not find a + * does not matter. The replace_callback function will just not find * an entry in the dialog variables table and log an error. */ if(uac_load_callback_helper(dialog, FL_USE_UAC_FROM) != 0) { From 24d12e7f36f2f29c3e3972b68fb5ff92cff2c169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 06:56:00 +0200 Subject: [PATCH 090/101] uac_redirect: typos --- .../uac_redirect/doc/uac_redirect_admin.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/modules/uac_redirect/doc/uac_redirect_admin.xml b/src/modules/uac_redirect/doc/uac_redirect_admin.xml index 71a448a6ae7..cec0478aaed 100644 --- a/src/modules/uac_redirect/doc/uac_redirect_admin.xml +++ b/src/modules/uac_redirect/doc/uac_redirect_admin.xml @@ -17,16 +17,16 @@
Overview - UAC REDIRECT - User Agent Client redirection - module enhance &kamailio; + UAC REDIRECT - User Agent Client redirection - module enhances &kamailio; with the functionality of being able to handle (interpret, filter, log and follow) redirect responses ( 3xx replies class). - UAC REDIRECT module offer stateful processing, gathering the + UAC REDIRECT module offers stateful processing, gathering the contacts from all 3xx branches of a call. - The module provide a powerful mechanism for selecting and filtering + The module provides a powerful mechanism for selecting and filtering the contacts to be used for the new redirect: @@ -340,7 +340,7 @@ modparam("uac_redirect","flags_hdr_mode",2)
<varname>q_value</varname> (int) - Specifies the q-value to asign to contacts without one. Because + Specifies the q-value to assign to contacts without one. Because Kamailio doesn't support float parameter types, the value in the parameter is divided by 1000 and stored as float. For example, if you want q value to be 0.38, use value 380 here. @@ -364,7 +364,7 @@ modparam("uac_redirect","q_value",0) Functions
- <function moreinfo="none">set_deny_filter(filter,flags) + <function moreinfo="none">set_deny_filter(filter, flags) </function> @@ -414,7 +414,7 @@ set_deny_filter(".*@domain1.net","");
- <function moreinfo="none">set_accept_filter(filter,flags) + <function moreinfo="none">set_accept_filter(filter, flags) </function> @@ -523,7 +523,7 @@ get_redirects("*");
- <function moreinfo="none">get_redirects(max,reason)</function> + <function moreinfo="none">get_redirects(max, reason)</function> The function has same functionality as From d30abdf1af0d9dc3c175d22c03e3c22b53c2560c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 17 Dec 2022 14:26:39 +0200 Subject: [PATCH 091/101] uid_avp_db: typo succesSful --- src/modules/uid_avp_db/README | 2 +- src/modules/uid_avp_db/doc/avp_dialogs.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/uid_avp_db/README b/src/modules/uid_avp_db/README index 2dc71e383d0..26d1fb7026e 100644 --- a/src/modules/uid_avp_db/README +++ b/src/modules/uid_avp_db/README @@ -491,7 +491,7 @@ n) route["load_dialog_data"] { lock_extra_attrs("dlg", "$id"); - del_attr("$dlg_init_method"); # used as flag of succesful read of data + del_attr("$dlg_init_method"); # used as flag of successful read of data # delete all used dlg attrs (because load_extra_attrs doesn't delete the m itself before adding) diff --git a/src/modules/uid_avp_db/doc/avp_dialogs.cfg b/src/modules/uid_avp_db/doc/avp_dialogs.cfg index 6e576e921af..cde2b7cce1d 100644 --- a/src/modules/uid_avp_db/doc/avp_dialogs.cfg +++ b/src/modules/uid_avp_db/doc/avp_dialogs.cfg @@ -125,7 +125,7 @@ route["save_dialog"] { route["load_dialog_data"] { lock_extra_attrs("dlg", "$id"); - del_attr("$dlg_init_method"); # used as flag of succesful read of data + del_attr("$dlg_init_method"); # used as flag of successful read of data # delete all used dlg attrs (because load_extra_attrs doesn't delete them itself before adding) del_attr("$dlg_init_method"); From a687882f73f665c5d2f2edf4df9b9cce213ab661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 27 Dec 2022 12:13:21 +0200 Subject: [PATCH 092/101] uid_domain: typos --- src/modules/uid_domain/doc/functions.xml | 4 ++-- src/modules/uid_domain/doc/uid_domain.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/uid_domain/doc/functions.xml b/src/modules/uid_domain/doc/functions.xml index beeff8337d8..c08f1e9416d 100644 --- a/src/modules/uid_domain/doc/functions.xml +++ b/src/modules/uid_domain/doc/functions.xml @@ -52,7 +52,7 @@ if (is_local("@ruri.host")) { string) and it can have one or more associated domain names. Given a domain name in the second parameter, this function finds the associated virtual domain identifier (known as DID) and stores it - in an attribute for later user. In addition to that the function + in an attribute for later use. In addition to that the function also loads all domain-level attributes for the virtual domain and makes them available to the configuration script. @@ -81,7 +81,7 @@ if (is_local("@ruri.host")) { The following example shows a typical use of the function. In a - multi domain setup, one has to typically figure out where the both + multi domain setup, one has usually to figure out whether both the calling and the called domains are local (i.e. configured on the server as the domains the server is responsible for). This is typically done by calling function diff --git a/src/modules/uid_domain/doc/uid_domain.xml b/src/modules/uid_domain/doc/uid_domain.xml index fc40f27e74d..8208293b517 100644 --- a/src/modules/uid_domain/doc/uid_domain.xml +++ b/src/modules/uid_domain/doc/uid_domain.xml @@ -22,7 +22,7 @@ Admin Guide
Overview - Domain modules, as the name suggests, implements support for + Domain module, as the name suggests, implements support for multiple independent virtual domains hosted on one SIP server. This is often useful if you have multiple domain names and you want to make them all work and appear as one. Alternatively you might find the @@ -139,7 +139,7 @@ iptel domain. They can be used to store additional configuration for the entire virtual domain, that is all users that belong (or have SIP URI) in that particular virtual domain. Domain-level attributes - can be overridden be user-level attributes with the same name + can be overridden by user-level attributes with the same name configured for a particular user. In other words a domain level attribute will only be effective if no user-level attribute with the same name exists. From 59bd267b7716207ab2b836d9af93f2e4c3a2e45b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 16:22:09 +0200 Subject: [PATCH 093/101] usrloc: typos --- src/modules/usrloc/doc/usrloc_admin.xml | 2 +- src/modules/usrloc/doc/usrloc_devel.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/usrloc/doc/usrloc_admin.xml b/src/modules/usrloc/doc/usrloc_admin.xml index 360a1be1474..2d3d8a17d42 100644 --- a/src/modules/usrloc/doc/usrloc_admin.xml +++ b/src/modules/usrloc/doc/usrloc_admin.xml @@ -1305,7 +1305,7 @@ modparam("usrloc", "version_table", 0) - For example, if set to 6, then keepalive is sent only natted UDP contacs. + For example, if set to 6, then keepalive is sent only natted UDP contacts. Note: the internal keepalive of usrloc module conflicts in some way with diff --git a/src/modules/usrloc/doc/usrloc_devel.xml b/src/modules/usrloc/doc/usrloc_devel.xml index eee2f6ef59d..856429f87a2 100644 --- a/src/modules/usrloc/doc/usrloc_devel.xml +++ b/src/modules/usrloc/doc/usrloc_devel.xml @@ -416,7 +416,7 @@
- <function moreinfo="none">ul_bind_ursloc( api ) + <function moreinfo="none">ul_bind_ursloc(api) </function> @@ -435,7 +435,7 @@
- <function moreinfo="none">ul_register_ulcb(type ,callback, param) + <function moreinfo="none">ul_register_ulcb(type, callback, param) </function> From 494e2e4083d780350d305ff482458b1f5424b306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:07:36 +0200 Subject: [PATCH 094/101] =?UTF-8?q?uri=5Fdb:=20typo=20its=20=E2=86=92=20it?= =?UTF-8?q?=20is?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/uri_db/doc/uri_db_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/uri_db/doc/uri_db_admin.xml b/src/modules/uri_db/doc/uri_db_admin.xml index 157f43ebf73..c5507b3c018 100644 --- a/src/modules/uri_db/doc/uri_db_admin.xml +++ b/src/modules/uri_db/doc/uri_db_admin.xml @@ -77,7 +77,7 @@ modparam("uri_db", "db_url", "mysql://username:password@localhost/kamailio")
<varname>db_table</varname> (string) - The DB table that should be used. Its possible to use the + The DB table that should be used. It is possible to use the subscriber and uri table. If the uri table should be used, an additional parameter use-uri-table) must be set. From adbcd9a18a73aac79ce3e61c803eb6a5c764e233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 07:54:50 +0200 Subject: [PATCH 095/101] websocket: typo a/an Access-Control-Allow-Origin header --- src/modules/websocket/doc/websocket_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/websocket/doc/websocket_admin.xml b/src/modules/websocket/doc/websocket_admin.xml index c9ec9f524b1..f12d1095619 100644 --- a/src/modules/websocket/doc/websocket_admin.xml +++ b/src/modules/websocket/doc/websocket_admin.xml @@ -407,12 +407,12 @@ modparam("websocket", "sub_protocols", 2) accepting the WebSocket handshake. - 1 - Add a + 1 - Add an "Access-Control-Allow-Origin: *" header to the response accepting the WebSocket handshake. - 2 - Add a + 2 - Add an "Access-Control-Allow-Origin:" header containing the same body as the "Origin:" header from the request to the response accepting the WebSocket handshake. If there is no From 1119340d981304d94736ac79ae3227cfde0e276a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 18:35:33 +0200 Subject: [PATCH 096/101] xcap_client: typo --- src/modules/xcap_client/doc/xcap_client_admin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xcap_client/doc/xcap_client_admin.xml b/src/modules/xcap_client/doc/xcap_client_admin.xml index ca502528ac7..2fa9c1b4f1e 100644 --- a/src/modules/xcap_client/doc/xcap_client_admin.xml +++ b/src/modules/xcap_client/doc/xcap_client_admin.xml @@ -16,7 +16,7 @@
Overview - The modules is a XCAP client for &kamailio; that can be used by other modules. + The module is a XCAP client for &kamailio; that can be used by other modules. It fetches XCAP elements, either documents or part of them, by sending HTTP GET requests to an XCAP server. It also offers support for conditional queries. It uses the libcurl library as a @@ -48,7 +48,7 @@
&kamailio; Modules - The modules is not dependent of any &kamailio; module. + The module is not dependent of any &kamailio; module.
From 6c5bdd36e3807bc5c698a6364e46a4e5f2f72362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sun, 18 Dec 2022 10:45:10 +0200 Subject: [PATCH 097/101] xmlrpc: typo typos --- src/modules/xmlrpc/doc/xmlrpc_admin.xml | 2 +- src/modules/xmlrpc/http.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xmlrpc/doc/xmlrpc_admin.xml b/src/modules/xmlrpc/doc/xmlrpc_admin.xml index 6c84dcb5108..8b527b90cec 100644 --- a/src/modules/xmlrpc/doc/xmlrpc_admin.xml +++ b/src/modules/xmlrpc/doc/xmlrpc_admin.xml @@ -136,7 +136,7 @@ modparam("xmlrpc", "double_lf_to_crlf", 1) <varname>mode</varname> (integer) When set to 1, the xmlrpc module does not register to core the callback - functions for non-SIP messages. Useful when another module register + functions for non-SIP messages. Useful when another module registers a callback for HTTP request, letting the admin decide when to call the XMLRPC route (or functions). diff --git a/src/modules/xmlrpc/http.c b/src/modules/xmlrpc/http.c index 6cdc12571f2..8b3af2eb14a 100644 --- a/src/modules/xmlrpc/http.c +++ b/src/modules/xmlrpc/http.c @@ -55,7 +55,7 @@ * @param msg a pointer to the currently processed SIP message * @param via the Via header field text to be inserted * @param via_len size of the Via header field being inserted - * @return 0 on succes, a negative number on error. + * @return 0 on success, a negative number on error. */ static int insert_fake_via(sip_msg_t* msg, char* via, int via_len) { From a61752cbe9a81c8674ac94047f96924ce9cfffd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:34:36 +0200 Subject: [PATCH 098/101] test: typos --- test/misc/cfg/acc-test.cfg | 4 ++-- test/misc/cfg/sf.cfg | 2 +- test/misc/code/shoot.c | 2 +- test/misc/code/shoot2.c | 2 +- test/unit/README | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/misc/cfg/acc-test.cfg b/test/misc/cfg/acc-test.cfg index 4f1f93e0dfb..df0f917c6df 100644 --- a/test/misc/cfg/acc-test.cfg +++ b/test/misc/cfg/acc-test.cfg @@ -62,7 +62,7 @@ loadmodule "../sip_router/modules/registrar/registrar.so" # that is the flag for which we will account -- don't forget to # set the same one :-) #modparam("acc", "acc_flag", 1 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions #modparam("acc", "failed_transactions", 0 ) @@ -78,7 +78,7 @@ modparam("radius_acc", "log_level", 1) # that is the flag for which we will account -- don't forget to # set the same one :-) modparam("radius_acc", "acc_flag", 1 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions modparam("radius_acc", "failed_transactions", 0 ) # -- tm params -- diff --git a/test/misc/cfg/sf.cfg b/test/misc/cfg/sf.cfg index 61c3bb25771..0e2865d941c 100644 --- a/test/misc/cfg/sf.cfg +++ b/test/misc/cfg/sf.cfg @@ -52,7 +52,7 @@ modparam("acc", "log_level", 1) # that is the flag for which we will account -- don't forget to # set the same one :-) modparam("acc", "acc_flag", 3 ) -# we are interested only in succesful transactions +# we are interested only in successful transactions modparam("acc", "failed_transactions", 0 ) modparam("acc", "missed_flag", 2 ) diff --git a/test/misc/code/shoot.c b/test/misc/code/shoot.c index fef3b65c499..a4ce0e22140 100644 --- a/test/misc/code/shoot.c +++ b/test/misc/code/shoot.c @@ -310,7 +310,7 @@ int main(int argc, char *argv[]) /* -shoot will exercise the all types of sip servers. +shoot will exercise all the types of sip servers. it is not to be used to measure round-trips and general connectivity. use ping for that. written by farhan on 10th august, 2000. diff --git a/test/misc/code/shoot2.c b/test/misc/code/shoot2.c index 099207e505c..403cff43fb9 100644 --- a/test/misc/code/shoot2.c +++ b/test/misc/code/shoot2.c @@ -397,7 +397,7 @@ int main(int argc, char *argv[]) /* -shoot will exercise the all types of sip servers. +shoot will exercise all the types of sip servers. it is not to be used to measure round-trips and general connectivity. use ping for that. written by farhan on 10th august, 2000. diff --git a/test/unit/README b/test/unit/README index 51abf4d3fbb..1c2115f7fc7 100644 --- a/test/unit/README +++ b/test/unit/README @@ -32,7 +32,7 @@ To execute all unit tests, run: To run a specific unit test, run: - make run UNIT=scripname + make run UNIT=scriptname Scriptname is the name of shell file to execute, for example: From bce31b0f46b995ebd1dc0b236184aa387cd49e32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 19:31:52 +0200 Subject: [PATCH 099/101] utils/kamclt: typo --- utils/kamctl/kamctl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/kamctl/kamctl b/utils/kamctl/kamctl index b4b861763aa..fbb237eb007 100755 --- a/utils/kamctl/kamctl +++ b/utils/kamctl/kamctl @@ -2192,7 +2192,7 @@ $SD_DESC_COLUMN FROM $SD_TABLE;" #| $AWK 'BEGIN {line=0;} # /^\+/ { next } # { line++; - #if(line==1) print "SIP-ID \tSpeedDial \tNew-URI \tDescritpion\n"; + #if(line==1) print "SIP-ID \tSpeedDial \tNew-URI \tDescription\n"; # else { # ORS_BAK=ORS; # ORS=""; @@ -2234,7 +2234,7 @@ $SD_TABLE $CLAUSE ; " $DBROCMD "$QUERY" # | $AWK 'BEGIN {line=0;} /^\+/ { next } # { - # if(line==0) print "## SIP-ID \tNew-URI \tDescritpion\n"; + # if(line==0) print "## SIP-ID \tNew-URI \tDescription\n"; # else { # ORS_BAK=ORS;usage_kamailio_monitor() { # ORS=""; From 7d57b0b5966e96af17393e093018a91d1db61fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 22:36:16 +0200 Subject: [PATCH 100/101] .github/CONTRIBUTING.md: typo --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index dac53f6d61e..aa71e664901 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -81,7 +81,7 @@ and commit history, there are several *rules* required for each contribution. Please create the commit messages following the GIT convention: - * start with one short line, preferably less then 50 chars summarizing the + * start with one short line, preferably less than 50 chars summarizing the changes (this is referred later as "first line of the commit message") * then one empty line * then a more detailed description (the "commit message content") From add9a98d3ca8396e141b9f6cd7a750cff9f2805e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Sat, 24 Dec 2022 22:39:12 +0200 Subject: [PATCH 101/101] examples/kemi: align the list of unfriendly UAs to the native cnf file --- misc/examples/kemi/kamailio-basic-kemi-jsdt.js | 3 ++- misc/examples/kemi/kamailio-basic-kemi-lua.lua | 3 ++- misc/examples/kemi/kamailio-basic-kemi-python.py | 3 ++- misc/examples/kemi/kamailio-basic-kemi-python3s.py | 3 ++- misc/examples/kemi/kamailio-basic-kemi-ruby.rb | 3 ++- misc/examples/kemi/kamailio-basic-kemi-sqlang.sq | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/misc/examples/kemi/kamailio-basic-kemi-jsdt.js b/misc/examples/kemi/kamailio-basic-kemi-jsdt.js index 272d9ed8ded..d33304e2103 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-jsdt.js +++ b/misc/examples/kemi/kamailio-basic-kemi-jsdt.js @@ -135,7 +135,8 @@ function ksr_route_reqinit() if (KSR.corex.has_user_agent()>0) { var UA = KSR.kx.gete_ua(); if (UA.indexOf("friendly")>=0 || UA.indexOf("scanner")>=0 - || UA.indexOf("sipcli")>=0 || UA.indexOf("sipvicious")>=0) { + || UA.indexOf("sipcli")>=0 || UA.indexOf("sipvicious")>=0 + || UA.indexOf("VaxSIPUserAgent")>=0 || UA.indexOf("pplsip")>= 0) { KSR.sl.sl_send_reply(200, "OK"); KSR.x.exit(); } diff --git a/misc/examples/kemi/kamailio-basic-kemi-lua.lua b/misc/examples/kemi/kamailio-basic-kemi-lua.lua index a33cc48f436..d3de2688243 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-lua.lua +++ b/misc/examples/kemi/kamailio-basic-kemi-lua.lua @@ -184,7 +184,8 @@ function ksr_route_reqinit() end local ua = KSR.kx.gete_ua(); if string.find(ua, "friendly") or string.find(ua, "scanner") - or string.find(ua, "sipcli") or string.find(ua, "sipvicious") then + or string.find(ua, "sipcli") or string.find(ua, "sipvicious") + or string.find(ua, "VaxSIPUserAgent") or string.find(ua, "pplsip") then KSR.sl.sl_send_reply(200, "OK"); KSR.x.exit(); end diff --git a/misc/examples/kemi/kamailio-basic-kemi-python.py b/misc/examples/kemi/kamailio-basic-kemi-python.py index 94908c5b019..7becda55ee4 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-python.py +++ b/misc/examples/kemi/kamailio-basic-kemi-python.py @@ -158,7 +158,8 @@ def ksr_route_reqinit(self, msg): if KSR.corex.has_user_agent() > 0 : ua = KSR.pv.gete("$ua") if (ua.find("friendly")!=-1 or ua.find("scanner")!=-1 - or ua.find("sipcli")!=-1 or ua.find("sipvicious")!=-1) : + or ua.find("sipcli")!=-1 or ua.find("sipvicious")!=-1 + or ua.find("VaxSIPUserAgent")!=-1 or ua.find("pplsip")!=-1) : KSR.sl.sl_send_reply(200, "Processed") return -255 diff --git a/misc/examples/kemi/kamailio-basic-kemi-python3s.py b/misc/examples/kemi/kamailio-basic-kemi-python3s.py index 51965cee321..502c6a32532 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-python3s.py +++ b/misc/examples/kemi/kamailio-basic-kemi-python3s.py @@ -146,7 +146,8 @@ def ksr_route_reqinit(): if KSR.corex.has_user_agent() > 0 : ua = KSR.kx.gete_ua() if (ua.find("friendly")!=-1 or ua.find("scanner")!=-1 - or ua.find("sipcli")!=-1 or ua.find("sipvicious")!=-1) : + or ua.find("sipcli")!=-1 or ua.find("sipvicious")!=-1 + or ua.find("VaxSIPUserAgent")!=-1 or ua.find("pplsip")!=-1) : KSR.sl.sl_send_reply(200, "Processed") return -255 diff --git a/misc/examples/kemi/kamailio-basic-kemi-ruby.rb b/misc/examples/kemi/kamailio-basic-kemi-ruby.rb index 43d83105c65..85316d41cbe 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-ruby.rb +++ b/misc/examples/kemi/kamailio-basic-kemi-ruby.rb @@ -123,7 +123,8 @@ def ksr_route_reqinit() if KSR::COREX.has_user_agent() > 0 then ua = KSR::PV.gete("$ua"); if ua.include? 'friendly' or ua.include? 'scanner' or - ua.include? 'sipcli' or ua.include? 'sipvicious' then + ua.include? 'sipcli' or ua.include? 'sipvicious' or + ua.include? 'VaxSIPUserAgent' or ua.include? 'pplsip' then KSR::SL.sl_send_reply(200, "OK"); exit end diff --git a/misc/examples/kemi/kamailio-basic-kemi-sqlang.sq b/misc/examples/kemi/kamailio-basic-kemi-sqlang.sq index c8456be158b..31c03225679 100644 --- a/misc/examples/kemi/kamailio-basic-kemi-sqlang.sq +++ b/misc/examples/kemi/kamailio-basic-kemi-sqlang.sq @@ -138,7 +138,8 @@ function ksr_route_reqinit() local UA = KSR.pv.get("$ua"); // if (sipscanregex.match(UA)) { if (UA.find("friendly")!=null || UA.find("scanner")!=null - || UA.find("sipcli")!=null || UA.find("sipvicious")!=null) { + || UA.find("sipcli")!=null || UA.find("sipvicious")!=null + || UA.find("VaxSIPUserAgent")!= null || UA.find("pplsip")!= null) { KSR.sl.sl_send_reply(200, "OK"); KSR.x.exit(); }