X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/71586a11d38b52295c9fb1884d4010adf6dd23b0..f5a1e732bf3907cabd004932aba3256b31d9d282:/Server/src/controlclient.cpp diff --git a/Server/src/controlclient.cpp b/Server/src/controlclient.cpp index b26385c..07c8680 100644 --- a/Server/src/controlclient.cpp +++ b/Server/src/controlclient.cpp @@ -55,15 +55,18 @@ void ControlClient::real_run(void) { #ifdef DEBUG cerr << __FILE__ << ": real_run." << endl; #endif // DEBUG - socket->connect(host.c_str(), port); - // TODO - mejorar manejo de errores de conexion. - // volver a poner signal_disconnected()? reciclar signal_error_received() - // y/o llamarla signal_error()? - if (false) { + try { + socket->connect(host.c_str(), port); + } catch (const sockerr& e) { + // Poner una señal de error específica? + error_received(1); finish(); - } else { - connected(); + return; } + host = socket->peerhost(); + port = socket->peerport(); + // TODO sacar a la mierda? + connected(); while (!stop) { HTTPResponse response; try { @@ -84,7 +87,7 @@ void ControlClient::real_run(void) { } switch (response.status_code) { case HTTPMessage::OK: - ok_received(); + ok_received(response.get_body()); break; default: error_received(response.status_code);