Ignore:
Timestamp:
Aug 15, 2019 5:11:41 AM (5 years ago)
Author:
nanang
Message:

Close #2219: Initialize enum fields in PJSUA2 objects.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/account.hpp

    r6035 r6051  
    328328public: 
    329329    /** 
     330     * Default constructor 
     331     */ 
     332    AccountCallConfig() : holdType(PJSUA_CALL_HOLD_TYPE_DEFAULT), 
     333                          prackUse(PJSUA_100REL_NOT_USED), 
     334                          timerUse(PJSUA_SIP_TIMER_OPTIONAL) 
     335    {} 
     336 
     337    /** 
    330338     * Read this object from a container node. 
    331339     * 
     
    689697public: 
    690698    /** 
     699     * Default constructor 
     700     */ 
     701    AccountNatConfig() : sipStunUse(PJSUA_STUN_USE_DEFAULT), 
     702                         mediaStunUse(PJSUA_STUN_USE_DEFAULT), 
     703                         nat64Opt(PJSUA_NAT64_DISABLED), 
     704                         turnConnType(PJ_TURN_TP_UDP) 
     705    {} 
     706 
     707    /** 
    691708     * Read this object from a container node. 
    692709     * 
     
    967984 
    968985public: 
     986    /** 
     987     * Default constructor 
     988     */ 
     989    AccountMediaConfig() : srtpUse(PJSUA_DEFAULT_USE_SRTP), 
     990                           ipv6Use(PJSUA_IPV6_DISABLED) 
     991    {} 
     992 
    969993    /** 
    970994     * Read this object from a container node. 
     
    10741098public: 
    10751099    /** 
     1100     * Default constructor 
     1101     */ 
     1102    AccountVideoConfig() : 
     1103                    rateControlMethod(PJMEDIA_VID_STREAM_RC_SIMPLE_BLOCKING) 
     1104    {} 
     1105 
     1106    /** 
    10761107     * Read this object from a container node. 
    10771108     * 
     
    13151346 
    13161347public: 
     1348    /** 
     1349     * Default constructor 
     1350     */ 
     1351    AccountInfo() : regStatus(PJSIP_SC_NULL) 
     1352    {} 
     1353 
    13171354    /** Import from pjsip data */ 
    13181355    void fromPj(const pjsua_acc_info &pai); 
Note: See TracChangeset for help on using the changeset viewer.