X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/65bf2eef7ac487329a3af3cd1c06e7957afc3a6c..1de5f8fa25dcea9fb9de9707d75120f762ce3a87:/Server/src/controlclient.cpp diff --git a/Server/src/controlclient.cpp b/Server/src/controlclient.cpp index 3ad35f8..fd0fdba 100644 --- a/Server/src/controlclient.cpp +++ b/Server/src/controlclient.cpp @@ -25,12 +25,40 @@ // $Id$ // -#include "controlclient.h" +#include "plaqui/server/controlclient.h" +#ifdef DEBUG +# include +#endif // DEBUG -using namespace Plaqui; +PlaQui::Server::ControlClient::~ControlClient(void) { +#ifdef DEBUG + std::cerr << __FILE__ << ": destructor." << std::endl; +#endif // DEBUG +} -ControlClient::ControlClient(std::string host, int port): - Connection(sockbuf::sock_stream) { +PlaQui::Server::ControlClient::ControlClient(std::string host, int port): + PlaQui::Server::Connection(sockbuf::sock_stream) { +#ifdef DEBUG + std::cerr << __FILE__ << ": host" << host + << " | port = " << port << std::endl; +#endif // DEBUG + // FIXME - poner en run(). socket->connect(host.c_str(), port); } +void PlaQui::Server::ControlClient::real_run(void) { +#ifdef DEBUG + std::cerr << __FILE__ << ": real_run." << std::endl; +#endif // DEBUG +#ifdef DEBUG + // FIXME - debería tirar una excepción? + if (!socket->is_open()) { + std::cerr << "No se pudo conectar a " << socket->peerhost() << + ":" << socket->peerport() << "." << std::endl; + } else { + std::cerr << "Conectado a " << socket->peerhost() << + ":" << socket->peerport() << "." << std::endl; + } +#endif // DEBUG +} +