From e4922ec89dddc34690fc8ee884ae5785098b6ae0 Mon Sep 17 00:00:00 2001 From: "Olle E. Johansson" Date: Sat, 17 Jan 2015 11:30:31 +0100 Subject: [PATCH] prefix_route - Fix doxygen --- modules/prefix_route/pr.h | 15 +++++++-------- modules/prefix_route/pr_rpc.c | 15 +++++++-------- modules/prefix_route/prefix_route.c | 20 ++++++++++++-------- modules/prefix_route/tree.c | 16 +++++++--------- modules/prefix_route/tree.h | 15 +++++++-------- 5 files changed, 40 insertions(+), 41 deletions(-) diff --git a/modules/prefix_route/pr.h b/modules/prefix_route/pr.h index cd812503b5a..a7c4d0aa215 100644 --- a/modules/prefix_route/pr.h +++ b/modules/prefix_route/pr.h @@ -4,19 +4,14 @@ * Copyright (C) 2007 Alfred E. Heggestad * Copyright (C) 2008 Telio Telecom AS * - * This file is part of ser, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * ser 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 ser 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 - * - * ser 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. @@ -25,6 +20,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! \file + * \brief Prefix Route Module - Internal module interface + * \ingroup prefix_route + */ extern rpc_export_t pr_rpc[]; diff --git a/modules/prefix_route/pr_rpc.c b/modules/prefix_route/pr_rpc.c index 5546bec2bd2..caf4a8e06f4 100644 --- a/modules/prefix_route/pr_rpc.c +++ b/modules/prefix_route/pr_rpc.c @@ -4,19 +4,14 @@ * Copyright (C) 2007 Alfred E. Heggestad * Copyright (C) 2008 Telio Telecom AS * - * This file is part of ser, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * ser 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 ser 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 - * - * ser 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. @@ -25,6 +20,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! \file + * \brief Prefix Route Module - RPC Commands + * \ingroup prefix_route + */ #include #include diff --git a/modules/prefix_route/prefix_route.c b/modules/prefix_route/prefix_route.c index 45c24384d49..c60ce8bbdcc 100644 --- a/modules/prefix_route/prefix_route.c +++ b/modules/prefix_route/prefix_route.c @@ -4,19 +4,14 @@ * Copyright (C) 2007 Alfred E. Heggestad * Copyright (C) 2008 Telio Telecom AS * - * This file is part of ser, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * ser 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 ser 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 - * - * ser 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,6 +21,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! \file + * \brief Prefix Route Module - module interface + * \ingroup prefix_route + */ + +/*! \defgroup prefix_route + * The prefix_route module does routing based on a set of prefixes from the database. + */ + #include #include diff --git a/modules/prefix_route/tree.c b/modules/prefix_route/tree.c index c65e044273f..bbca7e057a1 100644 --- a/modules/prefix_route/tree.c +++ b/modules/prefix_route/tree.c @@ -4,19 +4,14 @@ * Copyright (C) 2007 Alfred E. Heggestad * Copyright (C) 2008 Telio Telecom AS * - * This file is part of ser, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * ser 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 ser 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 - * - * ser 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. @@ -25,7 +20,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ - +/*! \file + * \brief Prefix Route Module - tree search implementation + * \ingroup prefix_route + */ #include #include diff --git a/modules/prefix_route/tree.h b/modules/prefix_route/tree.h index 122165062f4..674f49c0f08 100644 --- a/modules/prefix_route/tree.h +++ b/modules/prefix_route/tree.h @@ -4,19 +4,14 @@ * Copyright (C) 2007 Alfred E. Heggestad * Copyright (C) 2008 Telio Telecom AS * - * This file is part of ser, a free SIP server. + * This file is part of Kamailio, a free SIP server. * - * ser 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 ser 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 - * - * ser 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. @@ -25,6 +20,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! \file + * \brief Prefix Route Module - tree search interface + * \ingroup prefix_route + */ struct tree_item;