Navigation


Changeset 419:9cc48cd22e67 in freeDiameter for extensions/app_sip/diamsip.h


Ignore:
Timestamp:
Jul 12, 2010, 10:56:33 PM (14 years ago)
Author:
Alexandre Westfahl <awestfahl@freediameter.net>
Branch:
default
Phase:
public
Message:

Finished RTR on Diameter-SIP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_sip/diamsip.h

    r409 r419  
    8888int fd_avp_search_avp ( struct avp * groupedavp, struct dict_object * what, struct avp ** avp );
    8989
     90//thread procedure
     91void *rtr_socket(void *);
     92
     93struct rtrsipaor
     94{
     95        char username[200];
     96        char sip_aor1[200];
     97        char sip_aor2[200];
     98        char sip_aor3[200];
     99        char strreason[200];
     100        char desthost[200];
     101        int reason;
     102};
     103int diamsip_RTR_cb(struct rtrsipaor structure);
     104#define PORT 666 //TODO:put in conf file
     105
    90106int ds_entry();
    91107void fd_ext_fini(void);
     
    121137        struct dict_object * Auth_Session_State;
    122138        struct dict_object * Auth_Application_Id;
     139        struct dict_object * Destination_Host;
    123140        struct dict_object * User_Name;
     141        struct dict_object * Session_Id;
    124142        struct dict_object * SIP_Auth_Data_Item;
    125143        struct dict_object * SIP_Authorization;
     
    131149        struct dict_object * SIP_Method;
    132150        struct dict_object * SIP_AOR;
     151        struct dict_object * SIP_Deregistration_Reason;
     152        struct dict_object * SIP_Reason_Code;
     153        struct dict_object * SIP_Reason_Info;
    133154        struct dict_object * Digest_URI;               
    134155        struct dict_object * Digest_Nonce;
Note: See TracChangeset for help on using the changeset viewer.