- Timestamp:
- Jun 8, 2007 4:37:05 AM (17 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r1285 r1353 1745 1745 1746 1746 /** 1747 * This macro specifies the URI scheme to use in Contact header 1748 * when secure transport such as TLS is used. Application can specify 1749 * either "sip" or "sips". 1750 */ 1751 #ifndef PJSUA_SECURE_SCHEME 1752 # define PJSUA_SECURE_SCHEME "sips" 1753 #endif 1754 1755 1756 /** 1747 1757 * This structure describes account configuration to be specified when 1748 1758 * adding a new account with #pjsua_acc_add(). Application MUST initialize -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_acc.c
r1342 r1353 1049 1049 acc->display.ptr, 1050 1050 (acc->display.slen?" " : ""), 1051 (secure ? "sips": "sip"),1051 (secure ? PJSUA_SECURE_SCHEME : "sip"), 1052 1052 (int)acc->user_part.slen, 1053 1053 acc->user_part.ptr, … … 1156 1156 acc->display.ptr, 1157 1157 (acc->display.slen?" " : ""), 1158 (secure ? "sips": "sip"),1158 (secure ? PJSUA_SECURE_SCHEME : "sip"), 1159 1159 (int)acc->user_part.slen, 1160 1160 acc->user_part.ptr,
Note: See TracChangeset
for help on using the changeset viewer.