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/pjnath/include/pjnath/ice_session.h

    r1654 r1926  
    431431     * @param ice           The ICE session. 
    432432     * @param comp_id       ICE component ID. 
     433     * @param cand_id       ICE candidate ID. 
    433434     * @param pkt           The STUN packet. 
    434435     * @param size          The size of the packet. 
     
    437438     */ 
    438439    pj_status_t (*on_tx_pkt)(pj_ice_sess *ice, unsigned comp_id,  
     440                             unsigned cand_id, 
    439441                             const void *pkt, pj_size_t size, 
    440442                             const pj_sockaddr_t *dst_addr, 
     
    798800 * @param ice           The ICE session. 
    799801 * @param comp_id       Component ID. 
     802 * @param cand_id       The candidate ID where this packet was received 
     803 *                      from. This parameter will be returned back to 
     804 *                      application in \a on_tx_pkt() callback, and 
     805 *                      application may use it to determine whether to 
     806 *                      send outgoing packet using local socket or with 
     807 *                      the TURN relay. The ICE session will not use 
     808 *                      this information to determine the local candidate 
     809 *                      for this packet. 
    800810 * @param pkt           Incoming packet. 
    801811 * @param pkt_size      Size of incoming packet. 
     
    807817PJ_DECL(pj_status_t) pj_ice_sess_on_rx_pkt(pj_ice_sess *ice, 
    808818                                           unsigned comp_id, 
     819                                           unsigned cand_id, 
    809820                                           void *pkt, 
    810821                                           pj_size_t pkt_size, 
Note: See TracChangeset for help on using the changeset viewer.