Changeset 1127 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
- Timestamp:
- Apr 2, 2007 11:44:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r1102 r1127 2057 2057 pjsip_method method; 2058 2058 pjsip_tx_data *tdata; 2059 pjsua_acc_info acc_info;2060 2059 pjsip_endpoint *endpt; 2061 2060 pj_status_t status; … … 2066 2065 pjsip_method_init_np(&method, &str_method); 2067 2066 2068 pjsua_acc_get_info(current_acc, &acc_info); 2069 2070 status = pjsip_endpt_create_request(endpt, &method, dst_uri, 2071 &acc_info.acc_uri, dst_uri, 2072 NULL, NULL, -1, NULL, &tdata); 2073 if (status != PJ_SUCCESS) { 2074 pjsua_perror(THIS_FILE, "Unable to create request", status); 2075 return; 2076 } 2067 status = pjsua_acc_create_request(current_acc, &method, dst_uri, &tdata); 2077 2068 2078 2069 status = pjsip_endpt_send_request(endpt, tdata, -1, NULL, NULL);
Note: See TracChangeset
for help on using the changeset viewer.