Ignore:
Timestamp:
Mar 17, 2006 6:01:27 PM (18 years ago)
Author:
bennylp
Message:

Added samples (finally!!)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsip-perf/handler_call.c

    r271 r328  
    166166 
    167167    } else { 
    168         status = pjsip_inv_send_msg(inv, response, NULL); 
     168        status = pjsip_inv_send_msg(inv, response); 
    169169        if (status != PJ_SUCCESS) 
    170170            app_perror(THIS_FILE, "Unable to send 100 response", status); 
     
    248248 
    249249    /* Send initial INVITE: */ 
    250     status = pjsip_inv_send_msg(inv, tdata, NULL); 
     250    status = pjsip_inv_send_msg(inv, tdata); 
    251251    if (status != PJ_SUCCESS) { 
    252252        app_perror( THIS_FILE, "Unable to send initial INVITE request",  
     
    284284    } 
    285285 
    286     status = pjsip_inv_send_msg(call_data->inv, tdata, NULL); 
     286    status = pjsip_inv_send_msg(call_data->inv, tdata); 
    287287    if (status != PJ_SUCCESS) { 
    288288        app_perror(THIS_FILE, "Unable to send BYE", status); 
     
    392392 
    393393    /* Initialize invite session module: */ 
    394     status = pjsip_inv_usage_init(settings.endpt, &mod_call, &inv_cb); 
     394    status = pjsip_inv_usage_init(settings.endpt, &inv_cb); 
    395395    if (status != PJ_SUCCESS) { 
    396396        app_perror( THIS_FILE, "Unable to initialize INVITE session module",  
Note: See TracChangeset for help on using the changeset viewer.