Changeset 4422 for pjproject/trunk/pjsip-apps/src/python/_pjsua.c
- Timestamp:
- Mar 6, 2013 6:00:18 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/python/_pjsua.c
r3999 r4422 3106 3106 pj_str_t dst_uri; 3107 3107 PyObject *pDstUri, *pMsgData, *pUserData; 3108 unsigned options;3108 pjsua_call_setting option; 3109 3109 pjsua_msg_data msg_data; 3110 3110 int call_id; … … 3113 3113 PJ_UNUSED_ARG(pSelf); 3114 3114 3115 if (!PyArg_ParseTuple(pArgs, "iOIOO", &acc_id, &pDstUri, &options, 3115 pjsua_call_setting_default(&option); 3116 if (!PyArg_ParseTuple(pArgs, "iOIOO", &acc_id, &pDstUri, &option.flag, 3116 3117 &pUserData, &pMsgData)) 3117 3118 { … … 3136 3137 3137 3138 status = pjsua_call_make_call(acc_id, &dst_uri, 3138 options, (void*)pUserData,3139 &option, (void*)pUserData, 3139 3140 &msg_data, &call_id); 3140 3141 if (pool != NULL)
Note: See TracChangeset
for help on using the changeset viewer.