#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;
finish();
return;
}
- host = socket->peerhost();
- port = socket->peerport();
+ host = socket->localhost();
+ port = socket->localport();
// TODO sacar a la mierda?
connected();
while (!stop) {