listener: Use port 443. See #947

This commit is contained in:
Hylke Bons 2012-09-03 19:44:36 +01:00
parent 58a11b903c
commit b8921975f8
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ namespace SparkleLib {
// Please see the SparkleShare wiki if you wish to run
// your own service instead
if (string.IsNullOrEmpty (uri))
uri = "tcp://notifications.sparkleshare.org:80";
uri = "tcp://notifications.sparkleshare.org:443";
Uri announce_uri = new Uri (uri);

View file

@ -59,7 +59,7 @@ namespace SparkleLib {
int port = Server.Port;
if (port < 0)
port = 80;
port = 443;
try {
this.socket = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp) {