]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/controlclient.cpp
El Transmitter ya anda bien (se puede escuchar con un nc -p [puerto] -l -u :).
[z.facultad/75.42/plaqui.git] / Server / src / controlclient.cpp
index 07c86803346d4dbee1060e0fa3e76f8fa876dfc2..511def5841838757924cf4c225cec5361bbac97c 100644 (file)
@@ -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) {