Skip to content

Commit 88693a2

Browse files
committed
core Update headers, change "SIP-router" to "Kamailio", update doxygen file headers
1 parent 2266bb9 commit 88693a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+54
-234
lines changed

action.c

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
1-
21
/*
32
*
43
* Copyright (C) 2001-2003 FhG Fokus
54
*
6-
* This file is part of ser, a free SIP server.
5+
* This file is part of Kamailio, a free SIP server.
76
*
8-
* ser is free software; you can redistribute it and/or modify
7+
* Kamailio is free software; you can redistribute it and/or modify
98
* it under the terms of the GNU General Public License as published by
109
* the Free Software Foundation; either version 2 of the License, or
1110
* (at your option) any later version
1211
*
13-
* For a license to use the ser software under conditions
14-
* other than those described here, or to purchase support for this
15-
* software, please contact iptel.org by e-mail at the following addresses:
16-
17-
*
18-
* ser is distributed in the hope that it will be useful,
12+
* Kamailio is distributed in the hope that it will be useful,
1913
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2014
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2115
* GNU General Public License for more details.
@@ -28,7 +22,7 @@
2822

2923
/*!
3024
* \file
31-
* \brief SIP-router core ::
25+
* \brief Kamailio core :: Config file actions
3226
* \ingroup core
3327
* Module: \ref core
3428
*/

async_task.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Copyright (C) 2014 Daniel-Constantin Mierla (asipto.com)
33
*
4-
* This file is part of Extensible SIP Router, a free SIP server.
4+
* This file is part of Kamailio, a free SIP server.
55
*
66
* Permission to use, copy, modify, and distribute this software for any
77
* purpose with or without fee is hereby granted, provided that the above
@@ -15,6 +15,12 @@
1515
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1616
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1717
*/
18+
/*!
19+
* \file
20+
* \brief Kamailio core :: Asynchronus tasks
21+
* \ingroup core
22+
* Module: \ref core
23+
*/
1824

1925
#include <stdio.h>
2026
#include <unistd.h>

atomic_ops.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@
1313
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1414
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1515
*/
16-
/*
17-
* atomic operations init
18-
*/
1916

2017
/*!
2118
* \file
22-
* \brief SIP-router core ::
19+
* \brief SIP-router core :: atomic operations init
2320
* \ingroup core
2421
* Module: \ref core
2522
*/

basex.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
/*!
2323
* \file
24-
* \brief SIP-router core :: convert/decode to/from ascii using various bases
24+
* \brief Kamailio core :: convert/decode to/from ascii using various bases
2525
* \ingroup core
2626
* Module: \ref core
2727
*/

bit_count.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
/*!
1818
* \file
19-
* \brief SIP-router core ::
19+
* \brief Kamailio core ::
2020
* \ingroup core
2121
* Module: \ref core
2222
*/

bit_scan.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/*!
1818
* \file
19-
* \brief SIP-router core :: bit scan operations, see bit_scan.h.
19+
* \brief Kamailio core :: bit scan operations, see bit_scan.h.
2020
* \ingroup core
2121
* Module: \ref core
2222
*/

cfg_core.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
* Copyright (C) 2007 iptelorg GmbH
33
*
4-
* This file is part of SIP-router, a free SIP server.
4+
* This file is part of Kamailio, a free SIP server.
55
*
6-
* SIP-router is free software; you can redistribute it and/or modify
6+
* Kamailio is free software; you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation; either version 2 of the License, or
99
* (at your option) any later version
1010
*
11-
* SIP-router is distributed in the hope that it will be useful,
11+
* Kamailio is distributed in the hope that it will be useful,
1212
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
* GNU General Public License for more details.
@@ -19,7 +19,7 @@
1919
*
2020
*/
2121

22-
/** core runtime config.
22+
/** Kamailio core :: core runtime config.
2323
* @file cfg_core.c
2424
* @ingroup core
2525
* Module: @ref core

cfg_parser.c

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
* Copyright (C) 2008 iptelorg GmbH
55
* Written by Jan Janak <[email protected]>
66
*
7-
* This file is part of SER, a free SIP server.
7+
* This file is part of Kamailio, a free SIP server.
88
*
9-
* SER is free software; you can redistribute it and/or modify it under the
9+
* Kamailio is free software; you can redistribute it and/or modify it under the
1010
* terms of the GNU General Public License as published by the Free Software
1111
* Foundation; either version 2 of the License, or (at your option) any later
1212
* version.
1313
*
14-
* SER is distributed in the hope that it will be useful, but WITHOUT ANY
14+
* Kamailio is distributed in the hope that it will be useful, but WITHOUT ANY
1515
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
1616
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1717
* details.
@@ -22,7 +22,8 @@
2222
*/
2323
/*!
2424
* \file
25-
* \brief SIP-router core :: Standalone Configuration File Parser
25+
* \brief Kamailio core :: Standalone Configuration File Parser
26+
* \author Jan Janak <[email protected]>
2627
* \ingroup core
2728
*
2829
* Module: \ref core

core_cmd.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
* Copyright (C) 2005 iptelorg GmbH
33
*
4-
* This file is part of SIP-router, a free SIP server.
4+
* This file is part of Kamailio, a free SIP server.
55
*
6-
* SIP-router is free software; you can redistribute it and/or modify
6+
* Kamailio is free software; you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation; either version 2 of the License, or
99
* (at your option) any later version
1010
*
11-
* SIP-router is distributed in the hope that it will be useful,
11+
* Kamailio is distributed in the hope that it will be useful,
1212
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
* GNU General Public License for more details.
@@ -18,7 +18,7 @@
1818
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1919
*/
2020

21-
/** core rpcs.
21+
/** Kamailio Core :: core rpcs.
2222
* @file core_cmd.c
2323
* @ingroup core
2424
*/

crc.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
*
44
* Copyright (C) 2001-2003 FhG Fokus
55
*
6-
* This file is part of SIP-router, a free SIP server.
6+
* This file is part of Kamailio, a free SIP server.
77
*
8-
* SIP-router is free software; you can redistribute it and/or modify
8+
* Kamailio is free software; you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation; either version 2 of the License, or
1111
* (at your option) any later version
1212
*
13-
* SIP-router is distributed in the hope that it will be useful,
13+
* Kamailio is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
@@ -21,7 +21,7 @@
2121
*/
2222
/*!
2323
* \file
24-
* \brief SIP-router core :: Crc - 32 + 16 BIT ANSI X3.66 + CCITT CRC checksum files
24+
* \brief Kamailio core :: Crc - 32 + 16 BIT ANSI X3.66 + CCITT CRC checksum files
2525
* \ingroup core
2626
*
2727
* Module: \ref core

daemonize.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/*!
1818
* \file
19-
* \brief SIP-router core ::
19+
* \brief Kamailio core :: Daemon init
2020
* \ingroup core
2121
* Module: \ref core
2222
*/

data_lump.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
* Copyright (C) 2001-2003 FhG Fokus
33
*
4-
* This file is part of SIP-router, a free SIP server.
4+
* This file is part of Kamailio, a free SIP server.
55
*
6-
* SIP-router is free software; you can redistribute it and/or modify
6+
* Kamailio is free software; you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation; either version 2 of the License, or
99
* (at your option) any later version
1010
*
11-
* SIP-router is distributed in the hope that it will be useful,
11+
* Kamailio is distributed in the hope that it will be useful,
1212
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
* GNU General Public License for more details.
@@ -20,7 +20,7 @@
2020
*/
2121
/*!
2222
* \file
23-
* \brief SIP-router core :: Data lumps
23+
* \brief Kamailio core :: Data lumps
2424
* \ingroup core
2525
* Module: \ref core
2626
*/

data_lump_rpl.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
* the Free Software Foundation; either version 2 of the License, or
99
* (at your option) any later version
1010
*
11-
* For a license to use the Kamailio software under conditions
12-
* other than those described here, or to purchase support for this
13-
* software, please contact iptel.org by e-mail at the following addresses:
14-
15-
*
1611
* Kamailio is distributed in the hope that it will be useful,
1712
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1813
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -25,7 +20,7 @@
2520
*/
2621
/*!
2722
* \file
28-
* \brief SIP-router core :: Data lump handling
23+
* \brief Kamailio core :: Data lump handling
2924
* \ingroup core
3025
* Module: \ref core
3126
*/

dns_cache.c

+4-9
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,14 @@
33
*
44
* Copyright (C) 2006 iptelorg GmbH
55
*
6-
* This file is part of ser, a free SIP server.
6+
* This file is part of Kamailio, a free SIP server.
77
*
8-
* ser is free software; you can redistribute it and/or modify
8+
* Kamailio is free software; you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation; either version 2 of the License, or
1111
* (at your option) any later version
1212
*
13-
* For a license to use the ser software under conditions
14-
* other than those described here, or to purchase support for this
15-
* software, please contact iptel.org by e-mail at the following addresses:
16-
17-
*
18-
* ser is distributed in the hope that it will be useful,
13+
* Kamailio is distributed in the hope that it will be useful,
1914
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2116
* GNU General Public License for more details.
@@ -27,7 +22,7 @@
2722

2823
/*!
2924
* \file
30-
* \brief SIP-router core :: DNS cache handling
25+
* \brief Kamailio core :: DNS cache handling
3126
* \ingroup core
3227
* Module: \ref core
3328
*/

dns_func.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
*/
1717
/*!
1818
* \file
19-
* \brief SIP-router core :: DNS wrappers
19+
* \brief Kamailio core :: DNS wrappers
20+
2021
* \ingroup core
2122
* Module: \ref core
2223
*/

dns_func.h

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* Module: \ref core
2323
*
2424
*
25+
*/
2526

2627
#ifndef DNS_FUNC_H
2728
#define DNS_FUNC_H

dprint.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
* the Free Software Foundation; either version 2 of the License, or
1111
* (at your option) any later version
1212
*
13-
* For a license to use the Kamailio software under conditions
14-
* other than those described here, or to purchase support for this
15-
* software, please contact iptel.org by e-mail at the following addresses:
16-
17-
*
1813
* Kamailio is distributed in the hope that it will be useful,
1914
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -26,7 +21,7 @@
2621
*/
2722
/*!
2823
* \file
29-
* \brief SIP-router core :: Debug print
24+
* \brief Kamailio core :: Debug print
3025
* \ingroup core
3126
* Module: \ref core
3227
*/

dset.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
* the Free Software Foundation; either version 2 of the License, or
1111
* (at your option) any later version
1212
*
13-
* For a license to use the ser software under conditions
14-
* other than those described here, or to purchase support for this
15-
* software, please contact iptel.org by e-mail at the following addresses:
16-
17-
*
1813
* Kamailio is distributed in the hope that it will be useful,
1914
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -25,7 +20,7 @@
2520
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2621
*/
2722

28-
/** destination set / branches support.
23+
/** Kamailio core :: destination set / branches support.
2924
* @file dset.c
3025
* @ingroup core
3126
* Module: @ref core

dst_blacklist.c

-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
* the Free Software Foundation; either version 2 of the License, or
1111
* (at your option) any later version
1212
*
13-
* For a license to use the ser software under conditions
14-
* other than those described here, or to purchase support for this
15-
* software, please contact iptel.org by e-mail at the following addresses:
16-
17-
*
1813
* Kamailio is distributed in the hope that it will be useful,
1914
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

error.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
* the Free Software Foundation; either version 2 of the License, or
99
* (at your option) any later version
1010
*
11-
* For a license to use the ser software under conditions
12-
* other than those described here, or to purchase support for this
13-
* software, please contact iptel.org by e-mail at the following addresses:
14-
15-
*
1611
* Kamailio is distributed in the hope that it will be useful,
1712
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1813
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -26,7 +21,7 @@
2621

2722
/*!
2823
* \file
29-
* \brief SIP-router core :: Error handling
24+
* \brief Kamailio core :: Error handling
3025
* \ingroup core
3126
* Module: \ref core
3227
*/

events.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/*!
2020
* \file
21-
* \brief SIP-router core :: event handling
21+
* \brief Kamailio core :: event handling
2222
* \ingroup core
2323
* Module: \ref core
2424
*/

0 commit comments

Comments
 (0)