Ignore:
Timestamp:
Apr 14, 2008 1:48:39 AM (16 years ago)
Author:
bennylp
Message:

More ticket #485: huge changeset to integrate TURN with ICE and PJSUA-LIB/pjsua. Still experimental

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/ice-turn07/pjsip/include/pjsua-lib/pjsua.h

    r1912 r1926  
    10441044 
    10451045    /** 
    1046      * Specify STUN relay server to be used. 
    1047      */ 
    1048     pj_str_t        stun_relay_host; 
     1046     * Specify TURN server to be used. 
     1047     */ 
     1048    pj_str_t        turn_host; 
     1049 
     1050    /** 
     1051     * Specify TURN server port number. 
     1052     */ 
     1053    pj_uint16_t     turn_port; 
     1054 
     1055    /** 
     1056     * Specify if TCP connection to TURN server should be used. 
     1057     */ 
     1058    pj_bool_t       turn_tcp; 
     1059 
     1060    /** 
     1061     * Specify STUN credential for the TURN connection. 
     1062     */ 
     1063    pj_stun_auth_cred turn_cred; 
    10491064 
    10501065    /** 
     
    38873902 
    38883903    /** 
    3889      * Enable ICE media relay. 
    3890      */ 
    3891     pj_bool_t           enable_relay; 
     3904     * ICE options. 
     3905     */ 
     3906    unsigned            ice_options; 
     3907 
     3908    /** 
     3909     * Disable RTCP in ICE. 
     3910     */ 
     3911    pj_bool_t           ice_no_rtcp; 
    38923912}; 
    38933913 
Note: See TracChangeset for help on using the changeset viewer.