Changeset 6068 for pjproject/trunk/pjsip/src/pjsua2/account.cpp
- Timestamp:
- Sep 11, 2019 1:03:47 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/account.cpp
r6026 r6068 930 930 regIsConfigured = pai.has_registration != 0; 931 931 regIsActive = pai.has_registration && pai.expires > 0 && 932 (pai.status / 100 == 2); 932 pai.expires != PJSIP_EXPIRES_NOT_SPECIFIED && 933 (pai.status / 100 == 2); 933 934 regExpiresSec = pai.expires; 934 935 regStatus = pai.status;
Note: See TracChangeset
for help on using the changeset viewer.