X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/7e74b790d290cd7d776349503bb361c47933c01f..c90e905d76aed75379d220478e97fda0d34ec59b:/Server/src/plant.cpp diff --git a/Server/src/plant.cpp b/Server/src/plant.cpp index b01f1a5..ce9f737 100644 --- a/Server/src/plant.cpp +++ b/Server/src/plant.cpp @@ -153,6 +153,24 @@ bool Plant::transmission_stop(const string& host, return false; // No la encontrĂ³. } +bool Plant::on_transmission_finished(Transmitter* transmission) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": on_transmission_finished(transmission = " + << transmission << ")" << endl; +#endif // DEBUG + Glib::Mutex::Lock lock(transmissions_mutex); + transmissions.remove(transmission); +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": lista de conexiones" << endl; + for (TransmitterList::const_iterator i = transmissions.begin(); + i != transmissions.end(); i++) { + cerr << "\t " << *i << endl; + } +#endif // DEBUG +} + bool Plant::set_open(const std::string& element, bool open) { #ifdef DEBUG cerr << __FILE__ << "(" << __LINE__ << ")"