Use https for web services.

This commit is contained in:
Paul Chote
2018-01-04 21:11:32 +00:00
committed by Oliver Brakmann
parent 4d55fa9ca9
commit 3f37f02e84

View File

@@ -19,11 +19,11 @@ namespace OpenRA.Mods.Common
public class WebServices : IGlobalModData
{
public readonly string ServerList = "http://master.openra.net/games";
public readonly string ServerAdvertise = "http://master.openra.net/ping";
public readonly string MapRepository = "http://resource.openra.net/map/";
public readonly string GameNews = "http://master.openra.net/gamenews";
public readonly string VersionCheck = "http://master.openra.net/versioncheck";
public readonly string ServerList = "https://master.openra.net/games";
public readonly string ServerAdvertise = "https://master.openra.net/ping";
public readonly string MapRepository = "https://resource.openra.net/map/";
public readonly string GameNews = "https://master.openra.net/gamenews";
public readonly string VersionCheck = "https://master.openra.net/versioncheck";
public ModVersionStatus ModVersionStatus { get; private set; }
const int VersionCheckProtocol = 1;