set addonserver port to 15001...

...to make sure that it does not interfere with (more common) older
versions that might still be used by distributions relying on anchient
versions (debian anyone? ;) )
This commit is contained in:
Nils Kneuper 2009-11-09 20:00:58 +00:00
parent 48494a4b4b
commit f980be58ae
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ import wesnoth.wmlparser as wmlparser
dumpi = 0
class CampaignClient:
# First port listed will be used as default.
portmap = (("15005", "1.8.x"), ("15004", "1.7.x"), ("15003", "1.6.x"))
portmap = (("15001", "1.8.x"), ("15004", "1.7.x"), ("15003", "1.6.x"), ("15005", "1.4.x"))
def __init__(self, address = None):
"""

View file

@ -20,7 +20,7 @@
#include <cstring>
const unsigned short default_campaignd_port = 15005;
const unsigned short default_campaignd_port = 15001;
static bool two_dots(char a, char b)
{