Ignore:
Timestamp:
Mar 29, 2007 9:54:21 PM (17 years ago)
Author:
bennylp
Message:

Added ICE-CONTROLLING and ICE-CONTROLLED STUN attribute types

File:
1 edited

Legend:

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

    r1111 r1114  
    445445    pj_mutex_t          *mutex;                     /**< Mutex.             */ 
    446446    pj_ice_sess_role     role;                      /**< ICE role.          */ 
     447    pj_timestamp         tie_breaker;               /**< Tie breaker value  */ 
    447448    pj_bool_t            is_complete;               /**< Complete?          */ 
    448449    pj_status_t          ice_status;                /**< Error status.      */ 
     
    551552 
    552553/** 
     554 * Change session role. This happens for example when ICE session was 
     555 * created with controlled role when receiving an offer, but it turns out 
     556 * that the offer contains "a=ice-lite" attribute when the SDP gets 
     557 * inspected. 
     558 * 
     559 * @param ice           The ICE session. 
     560 * @param new_role      The new role to be set. 
     561 * 
     562 * @return              PJ_SUCCESS on success, or the appropriate error. 
     563 */ 
     564PJ_DECL(pj_status_t) pj_ice_sess_change_role(pj_ice_sess *ice, 
     565                                             pj_ice_sess_role new_role); 
     566 
     567 
     568/** 
    553569 * Add a candidate to this ICE session. Application must add candidates for 
    554570 * each components ID before it can start pairing the candidates and  
Note: See TracChangeset for help on using the changeset viewer.