Ignore:
Timestamp:
Apr 2, 2007 11:44:47 AM (17 years ago)
Author:
bennylp
Message:

Ticket #205: merged proxy functionalities from stable to trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r1102 r1127  
    20572057    pjsip_method method; 
    20582058    pjsip_tx_data *tdata; 
    2059     pjsua_acc_info acc_info; 
    20602059    pjsip_endpoint *endpt; 
    20612060    pj_status_t status; 
     
    20662065    pjsip_method_init_np(&method, &str_method); 
    20672066 
    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); 
    20772068 
    20782069    status = pjsip_endpt_send_request(endpt, tdata, -1, NULL, NULL); 
Note: See TracChangeset for help on using the changeset viewer.