Changeset 3452 for pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Mar 16, 2011 3:52:20 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r3441 r3452 3023 3023 } pjsua_call_info; 3024 3024 3025 3025 /** 3026 * Flags to be given to various call APIs. More than one flags may be 3027 * specified by bitmasking them. 3028 */ 3029 typedef enum pjsua_call_flag 3030 { 3031 /** 3032 * When the call is being put on hold, specify this flag to unhold it. 3033 * This flag is only valid for #pjsua_call_reinvite() and 3034 * #pjsua_call_update(). Note: for compatibility reason, this flag 3035 * must have value of 1 because previously the unhold option is 3036 * specified as boolean value. 3037 */ 3038 PJSUA_CALL_UNHOLD = 1, 3039 3040 /** 3041 * Update the local invite session's contact with the contact URI from 3042 * the account. This flag is only valid for #pjsua_call_reinvite() and 3043 * #pjsua_call_update(). This flag is useful in IP address change 3044 * situation, after the local account's Contact has been updated 3045 * (typically with re-registration) use this flag to update the invite 3046 * session with the new Contact and to inform this new Contact to the 3047 * remote peer with the outgoing re-INVITE or UPDATE 3048 */ 3049 PJSUA_CALL_UPDATE_CONTACT = 2 3050 3051 } pjsua_call_flag; 3026 3052 3027 3053 /** … … 3313 3339 * 3314 3340 * @param call_id Call identification. 3315 * @param unhold If this argument is non-zero and the call is locally 3316 * held, this will release the local hold. 3341 * @param options Bitmask of pjsua_call_flag constants. Note that 3342 * for compatibility, specifying PJ_TRUE here is 3343 * equal to specifying PJSUA_CALL_UNHOLD flag. 3317 3344 * @param msg_data Optional message components to be sent with 3318 3345 * the request. … … 3321 3348 */ 3322 3349 PJ_DECL(pj_status_t) pjsua_call_reinvite(pjsua_call_id call_id, 3323 pj_bool_t unhold,3350 unsigned options, 3324 3351 const pjsua_msg_data *msg_data); 3325 3352 … … 3328 3355 * 3329 3356 * @param call_id Call identification. 3330 * @param options Must be zero for now.3357 * @param options Bitmask of pjsua_call_flag constants. 3331 3358 * @param msg_data Optional message components to be sent with 3332 3359 * the request.
Note: See TracChangeset
for help on using the changeset viewer.