Changeset 2345 for pjproject/trunk


Ignore:
Timestamp:
Oct 8, 2008 10:14:03 AM (16 years ago)
Author:
nanang
Message:

Ticket #631: Fixed transport ICE returning zero/invalid remote RTP address when ICE is active.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/transport_ice.c

    r2293 r2345  
    14261426 
    14271427    /* Set remote address originating RTP & RTCP if this transport has  
    1428      * received any packets. 
     1428     * ICE activated or received any packets. 
    14291429     */ 
    1430     if (tp_ice->rtp_src_cnt) { 
     1430    if (tp_ice->use_ice || tp_ice->rtp_src_cnt) { 
    14311431        info->src_rtp_name  = tp_ice->rtp_src_addr; 
    14321432        info->src_rtcp_name = tp_ice->rtcp_src_addr; 
Note: See TracChangeset for help on using the changeset viewer.