Fix: assign values to relayd connection type enum
authorDavid Goulet <dgoulet@efficios.com>
Fri, 27 Sep 2013 18:40:19 +0000 (14:40 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Fri, 27 Sep 2013 18:40:19 +0000 (14:40 -0400)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/bin/lttng-relayd/lttng-relayd.h

index fbd7d78462a9ba30df8714e9b7aa62051e3e0902..3b7c74604abaa59b97187c5183d7565f7fa198cf 100644 (file)
@@ -38,10 +38,10 @@ struct relay_cmd_queue {
 };
 
 enum connection_type {
-       RELAY_DATA,
-       RELAY_CONTROL,
-       RELAY_VIEWER_COMMAND,
-       RELAY_VIEWER_NOTIFICATION,
+       RELAY_DATA                  = 1,
+       RELAY_CONTROL               = 2,
+       RELAY_VIEWER_COMMAND        = 3,
+       RELAY_VIEWER_NOTIFICATION   = 4,
 };
 
 /*
This page took 0.025289 seconds and 4 git commands to generate.