Skip to content

Commit

Permalink
set addonserver port to 15001...
Browse files Browse the repository at this point in the history
...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? ;) )
  • Loading branch information
ivanovic committed Nov 9, 2009
1 parent 48494a4 commit f980be5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/tools/wesnoth/campaignserver_client.py
Expand Up @@ -10,7 +10,7 @@
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):
"""
Expand Down
2 changes: 1 addition & 1 deletion src/addon_checks.cpp
Expand Up @@ -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)
{
Expand Down

0 comments on commit f980be5

Please sign in to comment.