Ignore:
Timestamp:
Jul 17, 2013 2:00:26 PM (11 years ago)
Author:
bennylp
Message:

More re #817: added logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c

    r4562 r4565  
    18431843                 * to set the answer in the on_rx_reinvite() callback. 
    18441844                 */ 
     1845                PJ_LOG(5,(inv->obj_name, "Ignoring on_rx_offer() status " 
     1846                          "because on_rx_reinvite() is implemented")); 
    18451847                return PJ_SUCCESS; 
    18461848            } 
     
    43714373                inv->notify) 
    43724374            { 
     4375                pj_status_t rc; 
     4376 
    43734377                sdp_info = pjsip_rdata_get_sdp_info(rdata); 
    4374                 if ((*mod_inv.cb.on_rx_reinvite) 
    4375                         (inv, sdp_info->sdp, rdata) == PJ_SUCCESS) 
    4376                 { 
     4378                rc = (*mod_inv.cb.on_rx_reinvite)(inv, sdp_info->sdp, 
     4379                                                  rdata); 
     4380                if (rc == PJ_SUCCESS) { 
    43774381                    /* Application will send its own response. 
    43784382                     * Our job is done. */ 
     4383                    PJ_LOG(5,(inv->obj_name, "on_rx_reinvite() returns %d", 
     4384                              rc)); 
    43794385                    return; 
    43804386                } 
Note: See TracChangeset for help on using the changeset viewer.