- some files were forgotten during renaming
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -82,7 +82,7 @@ stat_var *get_stat_var_from_num_code(unsigned int numerical_code, int out_codes) |
82 | 82 |
#define MAX_PROC_BUFFER 256 |
83 | 83 |
|
84 | 84 |
/*! |
85 |
- * This function will retrieve a list of all ip addresses and ports that OpenSER |
|
85 |
+ * This function will retrieve a list of all ip addresses and ports that Kamailio |
|
86 | 86 |
* is listening on, with respect to the transport protocol specified with |
87 | 87 |
* 'protocol'. |
88 | 88 |
* |
... | ... |
@@ -357,7 +357,7 @@ static int get_used_waiting_queue( |
357 | 357 |
fp = fopen(fileToOpen, "r"); |
358 | 358 |
|
359 | 359 |
if (fp == NULL) { |
360 |
- LM_ERR("Could not open %s. openserMsgQueu eDepth and its related" |
|
360 |
+ LM_ERR("Could not open %s. kamailioMsgQueueDepth and its related" |
|
361 | 361 |
" alarms will not be available.\n", fileToOpen); |
362 | 362 |
return 0; |
363 | 363 |
} |
... | ... |
@@ -373,7 +373,7 @@ static int get_used_waiting_queue( |
373 | 373 |
/* Only add rx_queue if the line just parsed corresponds |
374 | 374 |
* to an interface we are listening on. We do this |
375 | 375 |
* check because it is possible that this system has |
376 |
- * other network interfaces that OpenSER has been told |
|
376 |
+ * other network interfaces that Kamailio has been told |
|
377 | 377 |
* to ignore. */ |
378 | 378 |
if (match_ip_and_port(ipAddress, interfaceList, listSize)) { |
379 | 379 |
waitingQueueSize += rx_queue; |
... | ... |
@@ -388,7 +388,7 @@ static int get_used_waiting_queue( |
388 | 388 |
|
389 | 389 |
/*! |
390 | 390 |
* Returns the sum of the number of bytes waiting to be consumed on all network |
391 |
- * interfaces and transports that OpenSER is listening on. |
|
391 |
+ * interfaces and transports that Kamailio is listening on. |
|
392 | 392 |
* |
393 | 393 |
* Note: This currently only works on systems supporting the /proc/net/[tcp|udp] |
394 | 394 |
* interface. On other systems, zero will always be returned. To change |
... | ... |
@@ -61,7 +61,7 @@ stat_var *get_stat_var_from_num_code(unsigned int numerical_code, int in_codes); |
61 | 61 |
|
62 | 62 |
|
63 | 63 |
/*! |
64 |
- * This function will retrieve a list of all ip addresses and ports that OpenSER |
|
64 |
+ * This function will retrieve a list of all ip addresses and ports that Kamailio |
|
65 | 65 |
* is listening on, with respect to the transport protocol specified with |
66 | 66 |
* 'protocol'. |
67 | 67 |
* |
... | ... |
@@ -96,7 +96,7 @@ int get_socket_list_from_proto(int **ipList, int protocol); |
96 | 96 |
|
97 | 97 |
/*! |
98 | 98 |
* Returns the sum of the number of bytes waiting to be consumed on all network |
99 |
- * interfaces and transports that OpenSER is listening on. |
|
99 |
+ * interfaces and transports that Kamailio is listening on. |
|
100 | 100 |
* |
101 | 101 |
* Note: This currently only works on systems supporting the /proc/net/[tcp|udp] |
102 | 102 |
* interface. On other systems, zero will always be returned. Details of |
... | ... |
@@ -291,7 +291,7 @@ int bdblib_create_dbenv(DB_ENV **_dbenv, char* _home) |
291 | 291 |
char *progname; |
292 | 292 |
int rc, flags; |
293 | 293 |
|
294 |
- progname = "openser"; |
|
294 |
+ progname = "kamailio"; |
|
295 | 295 |
|
296 | 296 |
/* Create an environment and initialize it for additional error * reporting. */ |
297 | 297 |
if ((rc = db_env_create(&env, 0)) != 0) |
... | ... |
@@ -516,14 +516,14 @@ void bdblib_log(int op, bdb_db_p _db_p, bdb_table_p _tp, char* _msg, int len) |
516 | 516 |
* Instead it is done on first-use (lazy-initialized) to only create handles to |
517 | 517 |
* files (db) that we require. |
518 | 518 |
* |
519 |
- * There is one db file per openser table (eg. acc), and they should exist |
|
519 |
+ * There is one db file per kamailio table (eg. acc), and they should exist |
|
520 | 520 |
* in your DB_PATH (refer to kamctlrc) directory. |
521 | 521 |
* |
522 | 522 |
* This function does _not_ create the underlying binary db tables. |
523 | 523 |
* Creating the tables MUST be manually performed before |
524 |
- * openser startup by 'kamdbctl create' |
|
524 |
+ * kamailio startup by 'kamdbctl create' |
|
525 | 525 |
* |
526 |
- * Function returns NULL on error, which will cause openser to exit. |
|
526 |
+ * Function returns NULL on error, which will cause kamailio to exit. |
|
527 | 527 |
* |
528 | 528 |
*/ |
529 | 529 |
bdb_table_p bdblib_create_table(bdb_db_p _db, str *_s) |
... | ... |
@@ -308,7 +308,7 @@ int km_bdblib_create_dbenv(DB_ENV **_dbenv, char* _home) |
308 | 308 |
char *progname; |
309 | 309 |
int rc, flags; |
310 | 310 |
|
311 |
- progname = "openser"; |
|
311 |
+ progname = "kamailio"; |
|
312 | 312 |
|
313 | 313 |
/* Create an environment and initialize it for additional error * reporting. */ |
314 | 314 |
if ((rc = db_env_create(&env, 0)) != 0) |
... | ... |
@@ -556,14 +556,14 @@ void km_bdblib_log(int op, table_p _tp, char* _msg, int len) |
556 | 556 |
* Instead it is done on first-use (lazy-initialized) to only create handles to |
557 | 557 |
* files (db) that we require. |
558 | 558 |
* |
559 |
- * There is one db file per openser table (eg. acc), and they should exist |
|
559 |
+ * There is one db file per kamailio table (eg. acc), and they should exist |
|
560 | 560 |
* in your DB_PATH (refer to kamctlrc) directory. |
561 | 561 |
* |
562 | 562 |
* This function does _not_ create the underlying binary db tables. |
563 | 563 |
* Creating the tables MUST be manually performed before |
564 |
- * openser startup by 'kamdbctl create' |
|
564 |
+ * kamailio startup by 'kamdbctl create' |
|
565 | 565 |
* |
566 |
- * Function returns NULL on error, which will cause openser to exit. |
|
566 |
+ * Function returns NULL on error, which will cause kamailio to exit. |
|
567 | 567 |
* |
568 | 568 |
*/ |
569 | 569 |
table_p km_bdblib_create_table(database_p _db, str *_s) |
... | ... |
@@ -192,7 +192,7 @@ static int db_mysql_store_result(const db1_con_t* _h, db1_res_t** _r) |
192 | 192 |
LM_DBG("freeing result set at %p\n", _r); |
193 | 193 |
pkg_free(*_r); |
194 | 194 |
*_r = 0; |
195 |
- /* all mem on openser API side is already freed by |
|
195 |
+ /* all mem on Kamailio API side is already freed by |
|
196 | 196 |
* db_mysql_convert_result in case of error, but we also need |
197 | 197 |
* to free the mem from the mysql lib side */ |
198 | 198 |
mysql_free_result(CON_RESULT(_h)); |
... | ... |
@@ -102,7 +102,7 @@ str_map_t algo_names[] = { |
102 | 102 |
|
103 | 103 |
/* at jiri@iptel.org's suggestion: |
104 | 104 |
* |
105 |
- * set this to 'cpu' to have openser look at /proc/stat every time_interval |
|
105 |
+ * set this to 'cpu' to have Kamailio look at /proc/stat every time_interval |
|
106 | 106 |
* or set it to 'external' and you can push data in from an external source |
107 | 107 |
* via the fifo interface |
108 | 108 |
*/ |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -179,7 +179,7 @@ struct module_exports exports = { |
179 | 179 |
|
180 | 180 |
/* |
181 | 181 |
* mod_init |
182 |
- * Called by openser at init time |
|
182 |
+ * Called by Kamailio at init time |
|
183 | 183 |
*/ |
184 | 184 |
static int mod_init(void) { |
185 | 185 |
if(register_mi_mod(exports.name, mi_cmds)!=0) |
... | ... |
@@ -200,7 +200,7 @@ static int mod_init(void) { |
200 | 200 |
|
201 | 201 |
/* |
202 | 202 |
* destroy |
203 |
- * called by openser at exit time |
|
203 |
+ * called by Kamailio at exit time |
|
204 | 204 |
*/ |
205 | 205 |
static void destroy(void) |
206 | 206 |
{ |
... | ... |
@@ -22,7 +22,7 @@ |
22 | 22 |
* along with this program; if not, write to the Free Software |
23 | 23 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | 24 |
* |
25 |
- * cfgutils module: random probability functions for openser; |
|
25 |
+ * cfgutils module: random probability functions for Kamailio; |
|
26 | 26 |
* it provide functions to make a decision in the script |
27 | 27 |
* of the server based on a probability function. |
28 | 28 |
* The benefit of this module is the value of the probability function |
... | ... |
@@ -6,12 +6,12 @@ |
6 | 6 |
* |
7 | 7 |
* This file is part of kamailio, a free SIP server. |
8 | 8 |
* |
9 |
- * openser is free software; you can redistribute it and/or modify |
|
9 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
10 | 10 |
* it under the terms of the GNU General Public License as published by |
11 | 11 |
* the Free Software Foundation; either version 2 of the License, or |
12 | 12 |
* (at your option) any later version |
13 | 13 |
* |
14 |
- * openser is distributed in the hope that it will be useful, |
|
14 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
15 | 15 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | 16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | 17 |
* GNU General Public License for more details. |
... | ... |
@@ -6,12 +6,12 @@ |
6 | 6 |
* |
7 | 7 |
* This file is part of kamailio, a free SIP server. |
8 | 8 |
* |
9 |
- * openser is free software; you can redistribute it and/or modify |
|
9 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
10 | 10 |
* it under the terms of the GNU General Public License as published by |
11 | 11 |
* the Free Software Foundation; either version 2 of the License, or |
12 | 12 |
* (at your option) any later version |
13 | 13 |
* |
14 |
- * openser is distributed in the hope that it will be useful, |
|
14 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
15 | 15 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | 16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | 17 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
/* |
2 |
- * openser osp module. |
|
2 |
+ * Kamailio osp module. |
|
3 | 3 |
* |
4 |
- * This module enables openser to communicate with an Open Settlement |
|
4 |
+ * This module enables Kamailio to communicate with an Open Settlement |
|
5 | 5 |
* Protocol (OSP) server. The Open Settlement Protocol is an ETSI |
6 | 6 |
* defined standard for Inter-Domain VoIP pricing, authorization |
7 | 7 |
* and usage exchange. The technical specifications for OSP |
... | ... |
@@ -106,7 +106,7 @@ extern int ul_locks_no; |
106 | 106 |
|
107 | 107 |
/** |
108 | 108 |
* @var params |
109 |
- * defines the parameters which can be set in the openser config file |
|
109 |
+ * defines the parameters which can be set in the Kamailio config file |
|
110 | 110 |
* is stored. Only used when @see use_domain is set to 1 |
111 | 111 |
* @param write_db_url Url to the database where the key and database information is |
112 | 112 |
* stored and where errors are reported to. Only used when @see write_on_db is active. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2007 1&1 Internet AG |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
... | ... |
@@ -48,7 +48,7 @@ |
48 | 48 |
/*! CSEQ nr used */ |
49 | 49 |
#define MI_UL_CSEQ 1 |
50 | 50 |
/*! call-id used for ul_add and ul_rm_contact */ |
51 |
-static str mi_ul_cid = str_init("dfjrewr12386fd6-343@openser.mi"); |
|
51 |
+static str mi_ul_cid = str_init("dfjrewr12386fd6-343@Kamailio.mi"); |
|
52 | 52 |
/*! user agent used for ul_add */ |
53 | 53 |
static str mi_ul_ua = str_init("Kamailio MI Server"); |
54 | 54 |
|
... | ... |
@@ -5,7 +5,7 @@ |
5 | 5 |
* |
6 | 6 |
* Copyright (C) 2006 Voice Sistem S.R.L. |
7 | 7 |
* |
8 |
- * This file is part of openser, a free SIP serves. |
|
8 |
+ * This file is part of Kamailio, a free SIP serves. |
|
9 | 9 |
* |
10 | 10 |
* Kamailio is free software; you can redistribute it and/or modify |
11 | 11 |
* it under the terms of the GNU General Public License as published by |
... | ... |
@@ -619,7 +619,7 @@ static inline int send_sockinfo(int fd) |
619 | 619 |
unsigned char i; |
620 | 620 |
char buffer[300]; |
621 | 621 |
int k=0,j; |
622 |
- buffer[k++]=16;/*This used to be T_TABLE_POWER in openser 1.0.1, now its hardcoded in config.h*/ |
|
622 |
+ buffer[k++]=16;/*This used to be T_TABLE_POWER in Kamailio 1.0.1, now its hardcoded in config.h*/ |
|
623 | 623 |
for(i=0,s=udp_listen;s;s=s->next,i++); |
624 | 624 |
#ifdef USE_TCP |
625 | 625 |
for(s=tcp_listen;s;s=s->next,i++); |
... | ... |
@@ -23,7 +23,7 @@ |
23 | 23 |
#include "../../error.h" |
24 | 24 |
|
25 | 25 |
|
26 |
-/** OPENSER ERRORS ARE NEGATIVE, SEAS ERROR CODES ARE POSITIVE */ |
|
26 |
+/** Kamailio ERRORS ARE NEGATIVE, SEAS ERROR CODES ARE POSITIVE */ |
|
27 | 27 |
|
28 | 28 |
#define SE_CANCEL_MSG "500 SEAS cancel error" |
29 | 29 |
#define SE_CANCEL_MSG_LEN (sizeof(SE_CANCEL_MSG)-1) |
... | ... |
@@ -5,12 +5,12 @@ |
5 | 5 |
* |
6 | 6 |
* This file is part of kamailio, a free SIP server. |
7 | 7 |
* |
8 |
- * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
9 | 9 |
* it under the terms of the GNU General Public License as published by |
10 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
11 | 11 |
* (at your option) any later version |
12 | 12 |
* |
13 |
- * openser is distributed in the hope that it will be useful, |
|
13 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
14 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 16 |
* GNU General Public License for more details. |