Removing one permission

This commit is contained in:
WolverinDEV 2020-12-05 10:09:34 +01:00
parent 912d5e2c3e
commit 065dac2caf

View File

@ -1546,9 +1546,11 @@ std::deque<std::shared_ptr<EntryBinding>> config::create_bindings() {
ADD_NOTE_RELOADABLE();
}
{
CREATE_BINDING("webrtc.stun.host", 0);
BIND_STRING(config::web::stun_host, "stun.l.google.com");
ADD_DESCRIPTION("Stun hostname");
CREATE_BINDING("webrtc.stun.ip", 0);
BIND_STRING(config::web::stun_host, "127.0.0.1");
ADD_DESCRIPTION("The address of the stun server to use.");
ADD_DESCRIPTION("Attention: This must be an IP address!");
ADD_DESCRIPTION("Example whise you could use the resolved IP address of 'stun.l.google.com' as the stun server address.");
ADD_NOTE_RELOADABLE();
}
{