Changeset 252:690efbd91dd4 in verona for phapi/phapi.h


Ignore:
Timestamp:
Jul 12, 2011 2:47:42 PM (2 years ago)
Author:
Vadim Lebedev <vadim@…>
Branch:
default
Children:
253:cbe0776765ad, 264:f55d03c29bb5
Message:

Add support for specifying explicit NAT router address
Fix handling of route for REGISTER requests
Implement support for adding user=phone to Contact header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • phapi/phapi.h

    r173 r252  
    7676 *     phBlindTransferCall(cidA, "P"); 
    7777 *   this will cause following sequence of events: 
    78  *     1. B  will receive a CALLHELD event 
     78 *     1. B  will receive a CALLHELD eveph_config_tnt 
    7979 *     2. B  will receive a XFERREQ  event for cidB containingg "P" as remoteUri and newcid field will  
    8080 *           contain a callid for an automatically generated call to the new destination 
     
    193193  PH_LINE_MOBILITY_DEFAULT, 
    194194  PH_LINE_MOBILITY_FIXED, 
    195   PH_LINE_MOBILITY_MOBILE 
     195  PH_LINE_MOBILITY_MOBILE, 
     196  PH_LINE_MOBILITY_PHONE 
    196197}; 
    197198 
     
    12021203 
    12031204struct ph_config_s { 
     1205  char public_ip_addr[16]; /*!< public ip address in case of NAT  */ 
    12041206  char local_ip_addr[16];  /*!< ip address to use in case of muti-homed setup */ 
    12051207  char local_audio_rtp_port[16]; /*!< port number used for RTP data */ 
     
    12101212  char local_video_rtcp_port[16]; /*!< port number used for video RTCP data */  
    12111213 
    1212   char sipport[16];              /*!< sip port number */ 
     1214  char sipport[16];              /*!< local sip port number */ 
     1215  char public_sipport[16];        /*!< public sip port number */ 
    12131216  int transport;                        /*!< sip transport */ 
    12141217  char nattype[16];         /*!< nat type (auto,none,fcone,rcone,prcone,sym)  */ 
Note: See TracChangeset for help on using the changeset viewer.