Navigation


Changeset 433:0d08a9ab2212 in freeDiameter


Ignore:
Timestamp:
Jul 28, 2010, 2:34:48 PM (14 years ago)
Author:
Alexandre Westfahl <awestfahl@freediameter.net>
Branch:
default
Phase:
public
Message:

Corrected name mistakes on app_sip

Location:
extensions/app_sip
Files:
6 added
7 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_sip/CMakeLists.txt

    r431 r433  
    66
    77# Parser files
    8 BISON_FILE(diamsip.y)
    9 FLEX_FILE(diamsip.l)
    10 SET_SOURCE_FILES_PROPERTIES(lex.diamsip.c diamsip.tab.c PROPERTIES COMPILE_FLAGS "-I ${CMAKE_CURRENT_SOURCE_DIR}")
     8BISON_FILE(app_sip.y)
     9FLEX_FILE(app_sip.l)
     10SET_SOURCE_FILES_PROPERTIES(lex.app_sip.c app_sip.tab.c PROPERTIES COMPILE_FLAGS "-I ${CMAKE_CURRENT_SOURCE_DIR}")
    1111
    1212# List of source files
    1313SET( DIAM_SIP_SRC
    14         lex.diamsip.c
    15         diamsip.tab.c
    16         diamsip.tab.h
    17         diamsip.c
    18         diamsip.h
    19         libdiamsip.c
     14        lex.app_sip.c
     15        app_sip.tab.c
     16        app_sip.tab.h
     17        app_sip.c
     18        app_sip.h
     19        libapp_sip.c
    2020        md5.c
    2121        multimediaauth.c
  • extensions/app_sip/locationinfo.c

    r430 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737
    3838
    39 int diamsip_LIR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     39int app_sip_LIR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    4040{
    4141        TRACE_ENTRY("%p %p %p %p", msg, paramavp, sess, act);
  • extensions/app_sip/locationinfosl.c

    r430 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737
    3838//This callback is specific to SUSCRIBER LOCATOR. We must look for the "serving" SIP server
    39 int diamsipSL_LIR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     39int app_sip_SL_LIR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    4040{
    4141        TRACE_ENTRY("%p %p %p %p", msg, paramavp, sess, act);
  • extensions/app_sip/md5.c

    r409 r433  
    88
    99/*********************************************************************************/
    10 #include"diamsip.h"
     10#include"app_sip.h"
    1111 
    1212/*
  • extensions/app_sip/multimediaauth.c

    r430 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
    37 
    38 
    39 int diamsip_MAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     36#include "app_sip.h"
     37
     38
     39int app_sip_MAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    4040{
    4141        struct msg *ans, *qry;
  • extensions/app_sip/pushprofile.c

    r420 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737#include <sys/types.h>
    3838#include <sys/socket.h>
     
    7777                                {
    7878                                        //We received something, we can send an PPR
    79                                         diamsip_PPR_cb(pprsip);
     79                                        app_sip_PPR_cb(pprsip);
    8080                                }
    8181                        }
     
    9292}
    9393//Called to send a PPR
    94 int diamsip_PPR_cb(struct pprsipaor structure)
     94int app_sip_PPR_cb(struct pprsipaor structure)
    9595{
    9696        /*
     
    255255
    256256//Called when an PPA arrive
    257 int diamsip_PPA_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     257int app_sip_PPA_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    258258{
    259259        //TODO: PPA reception
  • extensions/app_sip/registrationtermination.c

    r420 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737#include <sys/types.h>
    3838#include <sys/socket.h>
     
    7575                                {
    7676                                        //We received something, we can send an RTR
    77                                         diamsip_RTR_cb(rtrsip);
     77                                        app_sip_RTR_cb(rtrsip);
    7878                                }
    7979                        }
     
    8888}
    8989//Called to send a RTR
    90 int diamsip_RTR_cb(struct rtrsipaor structure)
     90int app_sip_RTR_cb(struct rtrsipaor structure)
    9191{
    9292        TRACE_ENTRY("%p", structure);
     
    258258
    259259//Called when an RTA arrive
    260 int diamsip_RTA_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     260int app_sip_RTA_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    261261{
    262262        //TODO: RTA reception
  • extensions/app_sip/serverassignment.c

    r432 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737
    3838
    39 int diamsip_SAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     39int app_sip_SAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    4040{
    4141        TRACE_ENTRY("%p %p %p %p", msg, paramavp, sess, act);
  • extensions/app_sip/userauthorization.c

    r430 r433  
    3434* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3535*********************************************************************************************************/
    36 #include "diamsip.h"
     36#include "app_sip.h"
    3737
    3838
    39 int diamsip_UAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
     39int app_sip_UAR_cb( struct msg ** msg, struct avp * paramavp, struct session * sess, enum disp_action * act)
    4040{
    4141        TRACE_ENTRY("%p %p %p %p", msg, paramavp, sess, act);
Note: See TracChangeset for help on using the changeset viewer.