Ignore:
Timestamp:
Jan 4, 2007 10:45:08 PM (17 years ago)
Author:
bennylp
Message:

Just updated and improved the doxygen documentations all over the place

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r863 r875  
    687687    } else { 
    688688 
    689         /* Notify application */ 
    690         if (pjsua_var.ua_cfg.cb.on_incoming_call) 
     689        /* Notify application if on_incoming_call() is overriden,  
     690         * otherwise hangup the call with 480 
     691         */ 
     692        if (pjsua_var.ua_cfg.cb.on_incoming_call) { 
    691693            pjsua_var.ua_cfg.cb.on_incoming_call(acc_id, call_id, rdata); 
    692  
     694        } else { 
     695            pjsua_call_hangup(call_id, PJSIP_SC_TEMPORARILY_UNAVAILABLE,  
     696                              NULL, NULL); 
     697        } 
    693698    } 
    694699 
Note: See TracChangeset for help on using the changeset viewer.