Changeset 1423
- Timestamp:
- Aug 24, 2007 8:28:52 AM (17 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r1417 r1423 1770 1770 pj_bool_t publish_enabled; 1771 1771 1772 /** 1773 * Optional PIDF tuple ID for outgoing PUBLISH and NOTIFY. If this value 1774 * is not specified, a random string will be used. 1775 */ 1776 pj_str_t pidf_tuple_id; 1777 1772 1778 /** 1773 1779 * Optional URI to be put as Contact for this account. It is recommended -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_acc.c
r1400 r1423 76 76 pj_strdup_with_null(pool, &dst->reg_uri, &src->reg_uri); 77 77 pj_strdup_with_null(pool, &dst->force_contact, &src->force_contact); 78 pj_strdup_with_null(pool, &dst->pidf_tuple_id, &src->pidf_tuple_id); 78 79 79 80 dst->proxy_cnt = src->proxy_cnt; -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_pres.c
r1417 r1423 554 554 pres_status.info_cnt = 1; 555 555 pres_status.info[0].basic_open = pjsua_var.acc[acc_id].online_status; 556 pres_status.info[0].id = pjsua_var.acc[acc_id].cfg.pidf_tuple_id; 556 557 //Both pjsua_var.local_uri and pjsua_var.contact_uri are enclosed in "<" and ">" 557 558 //causing XML parsing to fail. … … 651 652 pres_status.info_cnt = 1; 652 653 pres_status.info[0].basic_open = acc->online_status; 654 pres_status.info[0].id = acc->cfg.pidf_tuple_id; 653 655 654 656 /* Be careful not to send PIDF with presence entity ID containing
Note: See TracChangeset
for help on using the changeset viewer.