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:
parent
48494a4b4b
commit
f980be58ae
2 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue