rr_cb.c

Go to the documentation of this file.
00001 /*
00002  * $Id: rr_cb.c 5575 2009-02-10 10:13:29Z henningw $
00003  *
00004  * Copyright (C) 2005 Voice Sistem SRL
00005  *
00006  * This file is part of Kamailio, a free SIP server.
00007  *
00008  * Kamailio is free software; you can redistribute it and/or
00009  * modify it under the terms of the GNU General Public License
00010  * as published by the Free Software Foundation; either version 2
00011  * of the License, or (at your option) any later version.
00012  *
00013  * Kamailio is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with this program; if not, write to the Free Software
00020  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00021  */
00022 
00023 /*!
00024  * \file
00025  * \brief Route & Record-Route module, callback API
00026  * \ingroup rr
00027  */
00028 
00029 #include "../../mem/mem.h"
00030 #include "rr_cb.h"
00031 
00032 
00033 /*! global callback list */
00034 struct rr_callback* rrcb_hl = 0;  /* head list */
00035 
00036 
00037 /*!
00038  * \brief destroy global callback list, frees memory
00039  */
00040 void destroy_rrcb_lists(void)
00041 {
00042    struct rr_callback *cbp, *cbp_tmp;
00043 
00044    for( cbp=rrcb_hl; cbp ; ) {
00045       cbp_tmp = cbp;
00046       cbp = cbp->next;
00047       pkg_free( cbp_tmp );
00048    }
00049 }
00050 
00051 
00052 /*!
00053  * \brief register a RR callback, allocates new private memory for it
00054  * \param f callback register function
00055  * \param param callback parameter
00056  * \return 0 on success, -1 on failure (out of memory)
00057  */
00058 int register_rrcb( rr_cb_t f, void *param )
00059 {
00060    struct rr_callback *cbp;
00061 
00062    /* build a new callback structure */
00063    if (!(cbp=pkg_malloc( sizeof( struct rr_callback)))) {
00064       LM_ERR("no more pkg mem\n");
00065       return -1;
00066    }
00067 
00068    /* fill it up */
00069    cbp->callback = f;
00070    cbp->param = param;
00071    /* link it at the beginning of the list */
00072    cbp->next = rrcb_hl;
00073    rrcb_hl = cbp;
00074    /* set next id */
00075    if (cbp->next)
00076       cbp->id = cbp->next->id+1;
00077    else
00078       cbp->id = 0;
00079 
00080    return 0;
00081 }
00082 
00083 
00084 /*!
00085  * \brief run RR transaction callbacks
00086  * \param req SIP request
00087  * \param rr_param callback list
00088  */
00089 void run_rr_callbacks( struct sip_msg *req, str *rr_params )
00090 {
00091    str l_param;
00092    struct rr_callback *cbp;
00093 
00094    for ( cbp=rrcb_hl ; cbp ; cbp=cbp->next ) {
00095       l_param = *rr_params;
00096       LM_DBG("callback id %d entered with <%.*s>\n",
00097          cbp->id , l_param.len,l_param.s);
00098       cbp->callback( req, &l_param, cbp->param );
00099    }
00100 }

Generated on Thu May 24 12:00:30 2012 for Kamailio - The Open Source SIP Server by  doxygen 1.5.6