- Timestamp:
- Apr 2, 2007 11:22:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.5-stable/pjsip-apps/src/pjsua/pjsua_app.c
r1043 r1122 2082 2082 pjsip_method method; 2083 2083 pjsip_tx_data *tdata; 2084 pjsua_acc_info acc_info;2085 2084 pjsip_endpoint *endpt; 2086 2085 pj_status_t status; … … 2091 2090 pjsip_method_init_np(&method, &str_method); 2092 2091 2093 pjsua_acc_get_info(current_acc, &acc_info); 2094 2095 status = pjsip_endpt_create_request(endpt, &method, dst_uri, 2096 &acc_info.acc_uri, dst_uri, 2097 NULL, NULL, -1, NULL, &tdata); 2098 if (status != PJ_SUCCESS) { 2099 pjsua_perror(THIS_FILE, "Unable to create request", status); 2100 return; 2101 } 2092 status = pjsua_acc_create_request(current_acc, &method, dst_uri, &tdata); 2102 2093 2103 2094 status = pjsip_endpt_send_request(endpt, tdata, -1, NULL, NULL);
Note: See TracChangeset
for help on using the changeset viewer.