Merge pull request #88 from nextcloud/default_stun_server

Change default STUN server (#86)
This commit is contained in:
Joas Schilling 2016-11-16 09:16:33 +01:00 коммит произвёл GitHub
Родитель 7a743fee9b a1edcb9f4c
Коммит 7444b18997
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -31,7 +31,7 @@ class Util {
* @return string
*/
public static function getStunServer(IConfig $config) {
return $config->getAppValue('spreed', 'stun_server', 'stun.l.google.com:19302');
return $config->getAppValue('spreed', 'stun_server', 'stun.nextcloud.com:443');
}
/**

Просмотреть файл

@ -38,7 +38,7 @@ class UtilTest extends TestCase {
$config
->expects($this->once())
->method('getAppValue')
->with('spreed', 'stun_server', 'stun.l.google.com:19302')
->with('spreed', 'stun_server', 'stun.nextcloud.com:443')
->willReturn('88.198.160.129');
$this->assertSame('88.198.160.129', $this->util->getStunServer($config));