X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/6bffb655ac989fe4f115763270f84175bf24e4bb..0d72fb12dc9a570be45e2f25320ac49f604c3ed2:/Server/src/controlserver.cpp?ds=sidebyside
diff --git a/Server/src/controlserver.cpp b/Server/src/controlserver.cpp
index 32d3306..23f89c4 100644
--- a/Server/src/controlserver.cpp
+++ b/Server/src/controlserver.cpp
@@ -126,55 +126,6 @@ void ControlServer::real_run(void) {
#endif // DEBUG
// Manda el comando.
command_received(command);
- // FIXME - hacer respuesta XML.
- // La respuesta hay que mandarla asincrónicamente porque no puedo
- // responder hasta que la planta no se termine de actualizar, por
- // ejemplo.
- //stringstream response_xml;
- //socket << "HTTP/1.0 200 OK" << endl;
-/*
-Date: Sun, 19 Oct 2003 15:11:14 GMT
-Server: Apache/1.3.28 (Debian GNU/Linux)
-Last-Modified: Mon, 28 Apr 2003 07:50:08 GMT
-Accept-Ranges: bytes
-*/
-/*
- socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
- response_xml << "" << endl;
- response_xml << "
" << endl;
- response_xml << " PlaQui v0.4" << endl;
- response_xml << " " << endl;
- response_xml << " " << endl;
- response_xml << " PlaQui
" << endl;
- response_xml << " versión 0.4
" << endl;
- response_xml << " Comando
" << endl;
- response_xml << " " << endl;
- response_xml << " - Target: " << command.get_target() << endl;
- response_xml << "
- Command: " << command.get_command() << endl;
- response_xml << "
- Argumentos:" << endl;
- response_xml << "
" << endl;
- for (Command::Arguments::const_iterator i = command.get_args().begin();
- i != command.get_args().end(); i++) {
- response_xml << " - " << *i << "
" << endl;
- }
- response_xml << "
" << endl;
- response_xml << "
" << endl;
- response_xml << " Desarrollado por
" << endl;
- response_xml << " " << endl;
- response_xml << " - Nicolás Dimov.
" << endl;
- response_xml << " - Leandro Lucarella.
" << endl;
- response_xml << " - Ricardo Markiewicz.
" << endl;
- response_xml << "
" << endl;
- response_xml << " " << endl;
- response_xml << " Copyleft 2003 - bajo los " << endl;
- response_xml << " términos de la licencia GPL" << endl;
- response_xml << " " << endl;
- response_xml << " " << endl;
- response_xml << "" << endl;
- socket << "Content-Length: " << response_xml.str().length() << endl;
- socket << endl;
- socket << response_xml.str() << flush;
-*/
}
}