Ignore:
Timestamp:
Sep 20, 2012 6:00:23 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1585: IPv6 support for SIP TCP and TLS transports and PJSUA-LIB v2

File:
1 edited

Legend:

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

    r4254 r4262  
    26912691 
    26922692/** 
     2693 * Specify how IPv6 transport should be used in account config. 
     2694 */ 
     2695typedef enum pjsua_ipv6_use 
     2696{ 
     2697    /** 
     2698     * IPv6 is not used. 
     2699     */ 
     2700    PJSUA_IPV6_DISABLED, 
     2701 
     2702    /** 
     2703     * IPv6 is enabled. 
     2704     */ 
     2705    PJSUA_IPV6_ENABLED 
     2706 
     2707} pjsua_ipv6_use; 
     2708 
     2709/** 
    26932710 * This structure describes account configuration to be specified when 
    26942711 * adding a new account with #pjsua_acc_add(). Application MUST initialize 
     
    30893106     */ 
    30903107    pjsua_transport_config rtp_cfg; 
     3108 
     3109    /** 
     3110     * Specify whether IPv6 should be used on media. 
     3111     */ 
     3112    pjsua_ipv6_use              ipv6_media_use; 
    30913113 
    30923114    /** 
Note: See TracChangeset for help on using the changeset viewer.