summaryrefslogtreecommitdiff
path: root/src/client.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-02-11 21:39:51 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-02 17:05:37 +0100
commit78d6d9352f66f41963207b04a999d94c17d67cf2 (patch)
treec286d4a6ebd46bc89808d3e18b2d7d920ea10351 /src/client.h
parent8546361abaa6123acd9dc1429575d1fd1cf6a4ec (diff)
downloadMana-78d6d9352f66f41963207b04a999d94c17d67cf2.tar.gz
Mana-78d6d9352f66f41963207b04a999d94c17d67cf2.tar.bz2
Mana-78d6d9352f66f41963207b04a999d94c17d67cf2.tar.xz
Mana-78d6d9352f66f41963207b04a999d94c17d67cf2.zip
Added support for -y / --server-type parameter
Usually this would be guessed correctly by the port, but now it is also possible to just specify the server type and the port will be derived from there, unless a default port is given in the branding file. Closes #56
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h
index fe202ccc..ccee43ba 100644
--- a/src/client.h
+++ b/src/client.h
@@ -145,9 +145,10 @@ public:
std::string configDir;
std::string localDataDir;
std::string screenshotDir;
+ std::string serverType;
std::string serverName;
- short serverPort = 0;
+ uint16_t serverPort = 0;
};
Client(const Options &options);