From 853fadd1cd90460d78e8563d611e444dc786e654 Mon Sep 17 00:00:00 2001 From: "Olle E. Johansson" Date: Fri, 1 Apr 2016 17:58:38 +0200 Subject: [PATCH] lcr Change name of software, remove SVN ID and history --- modules/lcr/hash.c | 8 ++++---- modules/lcr/hash.h | 8 ++++---- modules/lcr/lcr_mod.c | 28 ++++++---------------------- modules/lcr/lcr_mod.h | 13 ++++--------- modules/lcr/lcr_rpc.c | 13 ++++--------- modules/lcr/lcr_rpc.h | 13 ++++--------- 6 files changed, 26 insertions(+), 57 deletions(-) diff --git a/modules/lcr/hash.c b/modules/lcr/hash.c index 84fc59b5d18..9842d0ab2f6 100644 --- a/modules/lcr/hash.c +++ b/modules/lcr/hash.c @@ -3,14 +3,14 @@ * * Copyright (C) 2008-2012 Juha Heinanen * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -22,7 +22,7 @@ /*! * \file - * \brief SIP Router LCR :: Header file for hash table functions + * \brief Kamailio LCR :: Header file for hash table functions * \ingroup lcr * Module: \ref lcr */ diff --git a/modules/lcr/hash.h b/modules/lcr/hash.h index 50f998485bc..33c8b58cf4a 100644 --- a/modules/lcr/hash.h +++ b/modules/lcr/hash.h @@ -3,14 +3,14 @@ * * Copyright (C) 2008-2012 Juha Heinanen * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -22,7 +22,7 @@ /*! * \file - * \brief SIP-router lcr :: Header file for hash table functions + * \brief Kamailio lcr :: Header file for hash table functions * \ingroup lcr * Module: \ref lcr */ diff --git a/modules/lcr/lcr_mod.c b/modules/lcr/lcr_mod.c index 30d36548fe8..b7307e730d3 100644 --- a/modules/lcr/lcr_mod.c +++ b/modules/lcr/lcr_mod.c @@ -4,14 +4,14 @@ * Copyright (C) 2005-2014 Juha Heinanen * Copyright (C) 2006 Voice Sistem SRL * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -20,32 +20,16 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * History: - * ------- - * 2005-02-14: Introduced lcr module (jh) - * 2005-02-20: Added sequential forking functions (jh) - * 2005-02-25: Added support for int AVP names, combined addr and port - * AVPs (jh) - * 2005-07-28: Added support for gw URI scheme and transport, - * backport from ser (kd) - * 2005-08-20: Added support for gw prefixes (jh) - * 2005-09-03: Request-URI user part can be modified between load_gws() - * and first next_gw() calls. - * 2008-10-10: Database values are now checked and from/to_gw functions - * execute in O(logN) time. - * 2008-11-26: Added timer based check of gateways (shurik) - * 2009-05-12 added RPC support (andrei) - * 2009-06-21 Added support for more than one lcr instance and - gw defunct capability (jh) */ + /*! * \file - * \brief SIP-router LCR :: Module interface + * \brief Kamailio LCR :: Module interface * \ingroup lcr * Module: \ref lcr */ -/*! \defgroup lcr SIP-router Least Cost Routing Module +/*! \defgroup lcr Kamailio Least Cost Routing Module * * The Least Cost Routing (LCR) module implements capability to serially * forward a request to one or more gateways so that the order in which diff --git a/modules/lcr/lcr_mod.h b/modules/lcr/lcr_mod.h index 8075af82936..3db3d535536 100644 --- a/modules/lcr/lcr_mod.h +++ b/modules/lcr/lcr_mod.h @@ -1,18 +1,16 @@ /* - * $Id$ - * * Various lcr related constant, types, and external variables * * Copyright (C) 2005-2014 Juha Heinanen * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -21,14 +19,11 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * History: - * -------- - * 2005-02-06: created by jh */ /*! * \file - * \brief SIP-router lcr :: Various LCR related constant, types, and external variables + * \brief Kamailio lcr :: Various LCR related constant, types, and external variables * \ingroup lcr * Module: \ref lcr */ diff --git a/modules/lcr/lcr_rpc.c b/modules/lcr/lcr_rpc.c index 42e4f9446da..6b3afdcba20 100644 --- a/modules/lcr/lcr_rpc.c +++ b/modules/lcr/lcr_rpc.c @@ -3,19 +3,14 @@ * * Copyright (C) 2009-2010 Juha Heinanen * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * For a license to use the SIP Router software under conditions - * other than those described here, or to purchase support for this - * software, please contact iptel.org by e-mail at the following addresses: - * info@iptel.org - * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -27,7 +22,7 @@ /*! * \file - * \brief SIP-router lcr :: rpc API interface + * \brief Kamailio lcr :: rpc API interface * \ingroup lcr * Module: \ref lcr */ diff --git a/modules/lcr/lcr_rpc.h b/modules/lcr/lcr_rpc.h index 37fc4d4d235..2ab26e61a7d 100644 --- a/modules/lcr/lcr_rpc.h +++ b/modules/lcr/lcr_rpc.h @@ -3,19 +3,14 @@ * * Copyright (C) 2009-2010 Juha Heinanen * - * This file is part of SIP Router, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * SIP Router is free software; you can redistribute it and/or modify + * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version * - * For a license to use the SIP Router software under conditions - * other than those described here, or to purchase support for this - * software, please contact iptel.org by e-mail at the following addresses: - * info@iptel.org - * - * SIP Router is distributed in the hope that it will be useful, + * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -26,7 +21,7 @@ */ /*! * \file - * \brief SIP-router lcr :: RPC API functions + * \brief Kamailio lcr :: RPC API functions * \ingroup lcr * Module: \ref lcr */