Ignore:
Timestamp:
Aug 7, 2012 2:18:15 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1412: Account specific NAT settings: STUN, ICE, and TURN

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua_internal.h

    r4175 r4218  
    584584pj_status_t normalize_route_uri(pj_pool_t *pool, pj_str_t *uri); 
    585585 
     586/* acc use stun? */ 
     587pj_bool_t pjsua_sip_acc_is_using_stun(pjsua_acc_id acc_id); 
     588 
     589/* Get local transport address suitable to be used for Via or Contact address 
     590 * to send request to the specified destination URI. 
     591 */ 
     592pj_status_t pjsua_acc_get_uac_addr(pjsua_acc_id acc_id, 
     593                                   pj_pool_t *pool, 
     594                                   const pj_str_t *dst_uri, 
     595                                   pjsip_host_port *addr, 
     596                                   pjsip_transport_type_e *p_tp_type, 
     597                                   int *p_secure, 
     598                                   const void **p_tp); 
     599 
    586600/** 
    587601 * Handle incoming invite request. 
Note: See TracChangeset for help on using the changeset viewer.