- socket->connect(_host.c_str(), _port);
- host = socket->peerhost();
- port = socket->peerport();
+ socket->connect(host.c_str(), port);
+ // Reasigno el host y puerto bien, tanto de este objeto como los que se
+ // environ para indicar su valor correcto.
+ host = socket->peerhost();
+ port = socket->peerport();
+ _host = socket->peerhost();
+ _port = socket->peerport();