Changeset 1140 for pjproject/trunk/pjnath/include/pjnath/ice_session.h
- Timestamp:
- Apr 3, 2007 6:01:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/include/pjnath/ice_session.h
r1129 r1140 120 120 */ 121 121 pj_ice_sess_check *valid_check; 122 123 /** 124 * The STUN session to be used to send and receive STUN messages for this 125 * component. 126 */ 127 pj_stun_session *stun_sess; 122 128 123 129 } pj_ice_sess_comp; … … 188 194 pj_sockaddr rel_addr; 189 195 190 /**191 * The STUN session to be used to send and receive STUN messages for this192 * candidate.193 */194 pj_stun_session *stun_sess;195 196 196 } pj_ice_sess_cand; 197 197 … … 367 367 * @param ice The ICE session. 368 368 * @param comp_id ICE component ID. 369 * @param cand_id ICE candidate ID.370 369 * @param pkt The STUN packet. 371 370 * @param size The size of the packet. … … 374 373 */ 375 374 pj_status_t (*on_tx_pkt)(pj_ice_sess *ice, unsigned comp_id, 376 unsigned cand_id,377 375 const void *pkt, pj_size_t size, 378 376 const pj_sockaddr_t *dst_addr, … … 696 694 * @param ice The ICE session. 697 695 * @param comp_id Component ID. 698 * @param cand_id Candidate ID.699 696 * @param pkt Incoming packet. 700 697 * @param pkt_size Size of incoming packet. … … 706 703 PJ_DECL(pj_status_t) pj_ice_sess_on_rx_pkt(pj_ice_sess *ice, 707 704 unsigned comp_id, 708 unsigned cand_id,709 705 void *pkt, 710 706 pj_size_t pkt_size,
Note: See TracChangeset
for help on using the changeset viewer.