]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/httpmessage.h
- Se agrega el objeto Command que encapsula un comando enviado al servidor.
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / httpmessage.h
index cd583e72064d3bfc6a864149dc4f6d921d23595a..938f9ad0e4aeeed50223749c906cff0232bd65d0 100644 (file)
@@ -28,6 +28,7 @@
 #ifndef PLAQUI_HTTPMESSAGE_H
 #define PLAQUI_HTTPMESSAGE_H
 
+#include "plaqui/server/httpheaders.h"
 #include <string>
 
 namespace PlaQui {
@@ -39,7 +40,14 @@ namespace Server {
 
                // Atributos.
 
-               protected:
+               private:
+
+                       /// Cuerpo del mensaje.
+                       std::string body;
+
+               protected: // TODO hacer privados con get() y set() ???
+
+               public:
 
                        /// Version HTTP.
                        std::string version;
@@ -47,9 +55,6 @@ namespace Server {
                        /// Cabeceras HTTP.
                        HTTPHeaders headers;
 
-                       /// Cuerpo del mensaje.
-                       std::string body;
-
                // Métodos.
 
                public:
@@ -67,14 +72,25 @@ namespace Server {
                        /**
                         * Constructor.
                         */
-                       HTTPMessage(const std::string& body,
-                                       const std::string& http_version = "1.1");
+                       //HTTPMessage(const std::string& body,
+                       //              const std::string& http_version = "1.1");
+
+                       /**
+                        * Obtiene el cuerpo del mensaje.
+                        */
+                       const std::string& get_body(void) const;
+
+                       /**
+                        * Establece el cuerpo del mensaje.
+                        *
+                        * \param _body Cuerpo del mensaje.
+                        */
+                       void set_body(const std::string& _body);
 
                        /**
                         * Obtiene los datos del pedido HTTP desde un texto.
                         */
-                       friend std::istream& operator>>(std::istream& is,
-                                       const HTTPMessage& m);
+                       friend std::istream& operator>>(std::istream& is, HTTPMessage& m);
 
                        /**
                         * Convierte el pedido HTTP en texto.