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/include/pjsua-lib/pjsua.h

    r1102 r1127  
    22022202 
    22032203/** 
     2204 * Create arbitrary requests using the account. Application should only use 
     2205 * this function to create auxiliary requests outside dialog, such as 
     2206 * OPTIONS, and use the call or presence API to create dialog related 
     2207 * requests. 
     2208 * 
     2209 * @param acc_id        The account ID. 
     2210 * @param method        The SIP method of the request. 
     2211 * @param target        Target URI. 
     2212 * @param p_tdata       Pointer to receive the request. 
     2213 * 
     2214 * @return              PJ_SUCCESS or the error code. 
     2215 */ 
     2216PJ_DECL(pj_status_t) pjsua_acc_create_request(pjsua_acc_id acc_id, 
     2217                                              const pjsip_method *method, 
     2218                                              const pj_str_t *target, 
     2219                                              pjsip_tx_data **p_tdata); 
     2220 
     2221 
     2222/** 
    22042223 * Create a suitable URI to be put as Contact based on the specified 
    22052224 * target URI for the specified account. 
Note: See TracChangeset for help on using the changeset viewer.