Changeset 6051 for pjproject/trunk/pjsip/include/pjsua2/account.hpp
- Timestamp:
- Aug 15, 2019 5:11:41 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/account.hpp
r6035 r6051 328 328 public: 329 329 /** 330 * Default constructor 331 */ 332 AccountCallConfig() : holdType(PJSUA_CALL_HOLD_TYPE_DEFAULT), 333 prackUse(PJSUA_100REL_NOT_USED), 334 timerUse(PJSUA_SIP_TIMER_OPTIONAL) 335 {} 336 337 /** 330 338 * Read this object from a container node. 331 339 * … … 689 697 public: 690 698 /** 699 * Default constructor 700 */ 701 AccountNatConfig() : sipStunUse(PJSUA_STUN_USE_DEFAULT), 702 mediaStunUse(PJSUA_STUN_USE_DEFAULT), 703 nat64Opt(PJSUA_NAT64_DISABLED), 704 turnConnType(PJ_TURN_TP_UDP) 705 {} 706 707 /** 691 708 * Read this object from a container node. 692 709 * … … 967 984 968 985 public: 986 /** 987 * Default constructor 988 */ 989 AccountMediaConfig() : srtpUse(PJSUA_DEFAULT_USE_SRTP), 990 ipv6Use(PJSUA_IPV6_DISABLED) 991 {} 992 969 993 /** 970 994 * Read this object from a container node. … … 1074 1098 public: 1075 1099 /** 1100 * Default constructor 1101 */ 1102 AccountVideoConfig() : 1103 rateControlMethod(PJMEDIA_VID_STREAM_RC_SIMPLE_BLOCKING) 1104 {} 1105 1106 /** 1076 1107 * Read this object from a container node. 1077 1108 * … … 1315 1346 1316 1347 public: 1348 /** 1349 * Default constructor 1350 */ 1351 AccountInfo() : regStatus(PJSIP_SC_NULL) 1352 {} 1353 1317 1354 /** Import from pjsip data */ 1318 1355 void fromPj(const pjsua_acc_info &pai);
Note: See TracChangeset
for help on using the changeset viewer.