summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client_list.h2
-rw-r--r--switchctl.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/client_list.h b/client_list.h
index 1be6bb3..d208262 100644
--- a/client_list.h
+++ b/client_list.h
@@ -24,7 +24,7 @@
#include "datatypes.h"
-enum client_type_enum { DEFAULT, MASTER, STANDBY, HEARTBEAT };
+enum client_type_enum { DEFAULT, MASTER, STANDBY, MASTER_HB, STANDBY_HB };
typedef enum client_type_enum client_type_t;
struct client_struct {
diff --git a/switchctl.c b/switchctl.c
index f193450..4d4b003 100644
--- a/switchctl.c
+++ b/switchctl.c
@@ -356,8 +356,10 @@ void process_cmd_type(const char* param, int fd, client_t* client_lst)
client->type = STANDBY;
client->gpi_listener = 1;
}
- else if(!strncmp(param, "heartbeat", 9))
- client->type = HEARTBEAT;
+ else if(!strncmp(param, "master_hb", 9))
+ client->type = MASTER_HB;
+ else if(!strncmp(param, "standby_hb", 10))
+ client->type = STANDBY_HB;
else {
log_printf(DEBUG, "unkown client type '%s'", param);
send_response(fd, "EEE: type: unknown client type");