Add comment wrt TURN server credentials

This commit is contained in:
trilene 2020-07-16 15:53:35 -04:00
parent f8ef55c133
commit 28a678ca60
1 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Q_DECLARE_METATYPE(mtx::responses::TurnServer)
using namespace mtx::events;
using namespace mtx::events::msg;
// TODO Allow altenative in settings
// TODO Allow alterative in settings
#define STUN_SERVER "stun://turn.matrix.org:3478"
CallManager::CallManager(QSharedPointer<UserSettings> userSettings)
@ -62,6 +62,8 @@ CallManager::CallManager(QSharedPointer<UserSettings> userSettings)
for (const auto &u : res.uris)
nhlog::net()->info("uri: {}", u);
// Request new credentials close to expiry
// See https://tools.ietf.org/html/draft-uberti-behave-turn-rest-00
turnServer_ = res;
turnServerTimer_.setInterval(res.ttl * 1000 * 0.9);
});