Ignore:
Timestamp:
May 15, 2019 12:09:57 AM (5 years ago)
Author:
ming
Message:

Fixed #2107: Add option to use loopback media transport in pjsua

File:
1 edited

Legend:

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

    r5956 r5989  
    38593859 
    38603860    /** 
     3861     * Use loopback media transport. This may be useful if application 
     3862     * doesn't want PJSIP to create real media transports/sockets, such as 
     3863     * when using third party media. 
     3864     * 
     3865     * Default: PJ_FALSE 
     3866     */ 
     3867    pj_bool_t                   use_loop_med_tp; 
     3868 
     3869    /** 
     3870     * Enable local loopback when loop_med_tp_use is set to PJ_TRUE. 
     3871     * If enabled, packets sent to the transport will be sent back to 
     3872     * the streams attached to the transport. 
     3873     * 
     3874     * Default: PJ_FALSE 
     3875     */ 
     3876    pj_bool_t                   enable_loopback; 
     3877 
     3878    /** 
    38613879     * Control the use of ICE in the account. By default, the settings in the 
    38623880     * \a pjsua_media_config will be used. 
Note: See TracChangeset for help on using the changeset viewer.