From 615ba10bd9d441887bd1d31513ab088827e873e0 Mon Sep 17 00:00:00 2001 From: Adriana Draghici Date: Thu, 15 Apr 2010 12:05:53 +0000 Subject: [PATCH] autorun: updated constants in Util.py --- autorun/Util.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/autorun/Util.py b/autorun/Util.py index d254d4b..186ebc8 100644 --- a/autorun/Util.py +++ b/autorun/Util.py @@ -8,9 +8,13 @@ SERVER_HOST = "127.0.0.1" """ Message types: client -> server """ -START_MSG = "1"; -STOP_MSG = "2"; -STATUS_MSG = "3"; +START_MSG = 1 +STOP_MSG = 2 +STATUS_MSG = 3 +GET_CLIENTS = 4 +GET_OUTPUT = 5 +ARCHIVE = 6 +CLEANUP = 7 ACK_MSG = "1" # send by server to the client after receiving a message if everything was ok ERROR_MSG = "0" # send by server to the client if the parameters were incorrect -- 2.20.1