]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/httpmessage.h
Pocos cambios a la vista del "usuario":
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / httpmessage.h
index 938f9ad0e4aeeed50223749c906cff0232bd65d0..730bf0ac861d9a06d09d4a45f6fe6def6dd6a3df 100644 (file)
@@ -38,6 +38,18 @@ namespace Server {
        /// Pedido HTTP.
        class HTTPMessage {
 
+               // Constantes.
+
+               public:
+
+                       /// \todo TODO completar codigos.
+                       static const unsigned OK                         = 200;
+                       static const unsigned BAD_REQUEST                = 401;
+                       static const unsigned LENGTH_REQUIRED            = 411;
+                       static const unsigned INTERNAL_SERVER_ERROR      = 500;
+                       static const unsigned NOT_IMPLEMENTED            = 501;
+                       static const unsigned HTTP_VERSION_NOT_SUPPORTED = 505;
+
                // Atributos.
 
                private:
@@ -67,13 +79,13 @@ namespace Server {
                        /**
                         * Constructor.
                         */
-                       HTTPMessage(const std::string& http_version = "1.1");
+                       //HTTPMessage(const std::string& http_version = "1.1");
 
                        /**
                         * Constructor.
                         */
-                       //HTTPMessage(const std::string& body,
-                       //              const std::string& http_version = "1.1");
+                       HTTPMessage(const std::string& _body = "",
+                                       const std::string& _version = "1.1");
 
                        /**
                         * Obtiene el cuerpo del mensaje.
@@ -98,6 +110,13 @@ namespace Server {
                        friend std::ostream& operator<<(std::ostream& os,
                                        const HTTPMessage& m);
 
+                       /**
+                        * Obtiene la razón según un código.
+                        *
+                        * \param code Código de estado.
+                        */
+                       static std::string reason(unsigned code);
+
        };
 
 }