X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/184e15f0eedd1a3895987e59f5d39fad19c3b9b6..6983220ff84632481c1628720fe15b8f3ac1c9cb:/Server/src/controlclient.cpp?ds=inline diff --git a/Server/src/controlclient.cpp b/Server/src/controlclient.cpp index 07c8680..511def5 100644 --- a/Server/src/controlclient.cpp +++ b/Server/src/controlclient.cpp @@ -43,8 +43,8 @@ ControlClient::~ControlClient(void) { #endif // DEBUG } -ControlClient::ControlClient(string host, int port): - Connection(sockbuf::sock_stream), host(host), port(port) { +ControlClient::ControlClient(const string& host, const Connection::Port& port): + Connection(sockbuf::sock_stream, host, port) { #ifdef DEBUG cerr << __FILE__ << ": host = " << host << " | port = " << port << endl; @@ -63,8 +63,8 @@ void ControlClient::real_run(void) { finish(); return; } - host = socket->peerhost(); - port = socket->peerport(); + host = socket->localhost(); + port = socket->localport(); // TODO sacar a la mierda? connected(); while (!stop) {