rr_cb.c

Go to the documentation of this file.
00001 /*
00002  * $Id$
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 
00029 #include "../../mem/mem.h"
00030 #include "rr_cb.h"
00031 
00032 
00034 struct rr_callback* rrcb_hl = 0;  /* head list */
00035 
00036 
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 
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 
00089 void run_rr_callbacks( struct sip_msg *req, str *rr_param )
00090 {
00091         str l_param;
00092         struct rr_callback *cbp;
00093 
00094         for ( cbp=rrcb_hl ; cbp ; cbp=cbp->next ) {
00095                 l_param = *rr_param;
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 }