Changeset 5701 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- Nov 22, 2017 6:59:47 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r5635 r5701 3873 3873 3874 3874 /* Disconnect the call */ 3875 status = pjsip_dlg_create_request(forked_dlg, &pjsip_bye_method,3875 status = pjsip_dlg_create_request(forked_dlg, pjsip_get_bye_method(), 3876 3876 -1, &bye); 3877 3877 if (status == PJ_SUCCESS) { … … 4499 4499 pjsip_tx_data *tdata; 4500 4500 4501 status = pjsip_evsub_initiate(sub, &pjsip_subscribe_method,4501 status = pjsip_evsub_initiate(sub, pjsip_get_subscribe_method(), 4502 4502 0, &tdata); 4503 4503 if (status == PJ_SUCCESS) … … 4892 4892 } 4893 4893 } else if (tsx->role == PJSIP_ROLE_UAC && 4894 pjsip_method_cmp(&tsx->method, &pjsip_invite_method)==0 &&4894 pjsip_method_cmp(&tsx->method, pjsip_get_invite_method())==0 && 4895 4895 tsx->state >= PJSIP_TSX_STATE_COMPLETED && 4896 4896 e->body.tsx_state.prev_state < PJSIP_TSX_STATE_COMPLETED &&
Note: See TracChangeset
for help on using the changeset viewer.