Ignore:
Timestamp:
Mar 26, 2007 1:25:07 PM (17 years ago)
Author:
bennylp
Message:

ICE: implement RTCP component and cancelling check in progress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/ice_stream_transport.h

    r1104 r1106  
    6161enum pj_ice_st_option 
    6262{ 
    63     PJ_ICE_ST_OPT_DISABLE_STUN  = 1, 
    64     PJ_ICE_ST_OPT_DISABLE_RELAY = 2, 
    65     PJ_ICE_ST_OPT_NO_PORT_RETRY = 4, 
     63    PJ_ICE_ST_OPT_DONT_ADD_CAND = 1, 
     64    PJ_ICE_ST_OPT_DISABLE_STUN  = 2, 
     65    PJ_ICE_ST_OPT_DISABLE_RELAY = 4, 
     66    PJ_ICE_ST_OPT_NO_PORT_RETRY = 8, 
    6667}; 
    6768 
     
    144145                                           unsigned comp_id, 
    145146                                           pj_uint32_t options, 
    146                                            const pj_sockaddr_in *addr, 
    147                                            unsigned *p_itf_id); 
     147                                           const pj_sockaddr_in *addr); 
     148PJ_DECL(pj_status_t) pj_ice_st_add_cand(pj_ice_st *ice_st, 
     149                                        unsigned comp_id, 
     150                                        pj_ice_cand_type type, 
     151                                        pj_uint16_t local_pref, 
     152                                        const pj_sockaddr_in *addr, 
     153                                        pj_bool_t set_default); 
    148154 
    149155PJ_DECL(pj_status_t) pj_ice_st_get_comps_status(pj_ice_st *ice_st); 
Note: See TracChangeset for help on using the changeset viewer.