""" Message types: client -> server """
-CONFIG_MSG = "0";
START_MSG = "1";
STOP_MSG = "2";
STATUS_MSG = "3";
-
-# xml tags from clients.xml
-CLIENT = "client"
-FILE = "file"
-RUN_TYPE = "run type"
-INTERPRETER = "interpreter"
-PREFIX = "prefix"
-SUFFIX = "suffix"
-UP_LIMIT_OPTION = "upload_limit_option"
-DL_LIMIT_OPTION = "download_limit_option"
-PORT_OPTION = "port_option"
-LOG_DIR_OPTION = "logging_dir_option"
-DL_DIR_OPTION = "download_dir_option"
-
+ACK_MSG = "ACK" # send by server to the client after receiving a message if everything was ok
+ERROR_MSG = "ERROR " # send by server to the client if the parameters were incorrect
+ # or the client could not be started etc
#xml tags from swarm.xml
+CLIENT = "client"
BASE_DIR = "base"
UP_LIMIT = "upload_limit"
DL_LIMIT = "download_limit"
LOG_DIR = "logging_dir"
PORT = "port"
+
+#clients
+TRIBLER = tribler
+TRANSMISSION = transmission