Switch to using stun.moonlight-stream.org for STUN

This commit is contained in:
Cameron Gutman 2019-01-04 18:12:47 -08:00
parent 6a6022cda7
commit ee803c6247

View File

@ -298,7 +298,7 @@ void MoonlightInstance::STUNCallback(int32_t /*result*/, int32_t callbackId, pp:
ret.Set("callbackId", pp::Var(callbackId));
ret.Set("type", pp::Var("resolve"));
if (LiFindExternalAddressIP4("stun.stunprotocol.org", 3478, &wanAddr) == 0) {
if (LiFindExternalAddressIP4("stun.moonlight-stream.org", 3478, &wanAddr) == 0) {
inet_ntop(AF_INET, &wanAddr, addrStr, sizeof(addrStr));
ret.Set("ret", pp::Var(addrStr));
} else {