- * Finaliza la transimisión del estado de una planta.
- *
- * \param host Host al cual se quiere dejar de transmitir.
- * \param port Puerto al cual dejar de transmitir.
- *
- * \return true si se pudo empezar a transmitir, false si no.
+ * Maneja el comando transmission/start.
+ */
+ HTTPResponse* cmd_transmission_start(const Command& command);
+
+ /**
+ * Maneja el comando transmission/stop.
+ */
+ HTTPResponse* cmd_transmission_stop(const Command& command);
+
+ /**
+ * Maneja el comando plant/list.
+ */
+ HTTPResponse* cmd_plant_list(void);
+
+ /**
+ * Maneja el comando plant/get.
+ */
+ HTTPResponse* cmd_plant_get(const Command& command);
+
+ /**
+ * Maneja el comando plant/get.
+ */
+ HTTPResponse* cmd_plant_set(const Command& command);
+
+ /**
+ * Maneja el comando plant/stop.
+ */
+ HTTPResponse* cmd_plant_stop(const Command& command);
+
+ public:
+
+ /**
+ * Destructor.
+ */
+ virtual ~Server(void);
+
+ /**
+ * Constructor.