listener: set port 80 as the default

This commit is contained in:
Hylke Bons 2012-05-28 00:45:33 +01:00
parent 5058a3aace
commit e42344256f
3 changed files with 3 additions and 2 deletions

1
NEWS
View file

@ -8,6 +8,7 @@
- Make fetching remote project's history optional
- Cached logs for faster event log loading/switching
- Sort event log file entries by time
- Change default notification service to use port 80
Travis:
- Rewrote the notification service, now more robust and reliable

View file

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

View file

@ -64,7 +64,7 @@ namespace SparkleLib {
int port = Server.Port;
if (port < 0)
port = 1986;
port = 80;
try {
lock (this.socket_lock) {