#include "plaqui/server/httperror.h"
#include "plaqui/server/httpmessage.h"
+#include <socket++/sockstream.h>
#include <string>
namespace PlaQui {
/// Respuesta HTTP.
class HTTPResponse: public HTTPMessage {
+ /////////////////////////////////////////////////////////////////////
// Tipos.
public:
MISSING_HTTP_RESPONSE_CODE
} Error;
+ /////////////////////////////////////////////////////////////////////
// Atributos.
//protected: FIXME - hacer privado con get/set?
/// Descripción del código (razón).
std::string reason;
+ /////////////////////////////////////////////////////////////////////
// Métodos.
public:
/**
* Constructor.
*/
- HTTPResponse(const std::string& version = "1.1");
+ HTTPResponse(const std::string& body = "",
+ const std::string& version = "1.1");
/**
* Constructor.
* Obtiene los datos de la respuesta HTTP desde un texto.
*/
friend std::istream& operator>>(std::istream& is,
- HTTPResponse& resp) throw(Error, std::ios::failure);
+ HTTPResponse& resp)
+ throw(Error, sockerr, std::ios::failure);
/**
* Convierte la respuesta HTTP en texto.
*/
friend std::ostream& operator<<(std::ostream& os,
- const HTTPResponse& resp);
+ const HTTPResponse& resp) throw(sockerr);
};