]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/transmitter.cpp
El Transmitter ya anda bien (se puede escuchar con un nc -p [puerto] -l -u :).
[z.facultad/75.42/plaqui.git] / Server / src / transmitter.cpp
index a195f6f14ec83732a5ae883aaaf89564de6fd81e..a1ac7b0deb24df8c0839209b83a89cfa628cd203 100644 (file)
@@ -46,12 +46,12 @@ Transmitter::~Transmitter(void) {
 }
 
 Transmitter::Transmitter(const string& _host, const Connection::Port& _port):
-               Connection(sockbuf::sock_dgram) {
+               Connection(sockbuf::sock_dgram, _host, _port) {
 #ifdef DEBUG
-       cerr << __FILE__ << ": host = " << _host
-               << " | port = " << _port << endl;
+       cerr << __FILE__ << ": _host = " << _host
+               << " | _port = " << _port << endl;
 #endif // DEBUG
-       socket->connect(_host.c_str(), _port);
+       socket->connect(host.c_str(), port);
        host = socket->peerhost();
        port = socket->peerport();
 }