Changeset 328 for pjproject/trunk/pjsip-apps/src/pjsip-perf/handler_call.c
- Timestamp:
- Mar 17, 2006 6:01:27 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsip-perf/handler_call.c
r271 r328 166 166 167 167 } else { 168 status = pjsip_inv_send_msg(inv, response , NULL);168 status = pjsip_inv_send_msg(inv, response); 169 169 if (status != PJ_SUCCESS) 170 170 app_perror(THIS_FILE, "Unable to send 100 response", status); … … 248 248 249 249 /* Send initial INVITE: */ 250 status = pjsip_inv_send_msg(inv, tdata , NULL);250 status = pjsip_inv_send_msg(inv, tdata); 251 251 if (status != PJ_SUCCESS) { 252 252 app_perror( THIS_FILE, "Unable to send initial INVITE request", … … 284 284 } 285 285 286 status = pjsip_inv_send_msg(call_data->inv, tdata , NULL);286 status = pjsip_inv_send_msg(call_data->inv, tdata); 287 287 if (status != PJ_SUCCESS) { 288 288 app_perror(THIS_FILE, "Unable to send BYE", status); … … 392 392 393 393 /* 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); 395 395 if (status != PJ_SUCCESS) { 396 396 app_perror( THIS_FILE, "Unable to initialize INVITE session module",
Note: See TracChangeset
for help on using the changeset viewer.