Browse Source

Merge pull request #88 from nextcloud/default_stun_server

Change default STUN server (#86)
pull/99/head
Joas Schilling 9 years ago
committed by GitHub
parent
commit
7444b18997
  1. 2
      lib/Util.php
  2. 2
      tests/php/UtilTest.php

2
lib/Util.php

@ -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');
}
/**

2
tests/php/UtilTest.php

@ -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));

Loading…
Cancel
Save