X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/b92547a5de3a3fb4f14a2bea4a4e776b8da3cb5c..c0e0cf58ce033421d125afb813636f102456592c:/Server/src/transmitter.cpp diff --git a/Server/src/transmitter.cpp b/Server/src/transmitter.cpp index 4211e51..de940f9 100644 --- a/Server/src/transmitter.cpp +++ b/Server/src/transmitter.cpp @@ -26,6 +26,7 @@ // #include "plaqui/server/transmitter.h" +#include #include #include #ifdef DEBUG @@ -44,29 +45,37 @@ Transmitter::~Transmitter(void) { #endif // DEBUG } -/// \todo debría conectarse en real_run() (?) -Transmitter::Transmitter(string host, int port): - Connection(sockbuf::sock_dgram) { +Transmitter::Transmitter(string& _host, Connection::Port& _port): + Connection(sockbuf::sock_dgram, _host, _port) { #ifdef DEBUG - cerr << __FILE__ << ": host = " << host - << " | port = " << port << endl; + cerr << __FILE__ << ": _host = " << _host + << " | _port = " << _port << endl; #endif // DEBUG - // FIXME - deberia ir en run(). 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(); } /// \todo debría dar una excepción (?) void Transmitter::real_run(void) { #ifdef DEBUG - // FIXME - debería tirar una excepción? - if (!socket->is_open()) { - cerr << "No se pudo conectar a " << socket->peerhost() << - ":" << socket->peerport() << "." << endl; - } else { - cerr << "Conectado a " << socket->peerhost() << - ":" << socket->peerport() << "." << endl; + cerr << __FILE__ << ": real_run()." << endl; +#endif // DEBUG + // No hace nada, porque solo actua cuando se manda algo con send(). + while (!stop) { + Glib::usleep(1000); } +} + +void Transmitter::send(const string& data) { +#ifdef DEBUG + cerr << __FILE__ << ": send(data = " << data << ")." << endl; #endif // DEBUG + socket << data << flush; } } // namespace Server