+ // Reasigno el host y puerto bien.
+ host = socket->peerhost();
+ port = socket->peerport();
+#ifdef DEBUG
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": (real) host = " << _host
+ << " | port = " << _port << endl;
+#endif // DEBUG
+}
+
+void Transmitter::real_run(void) throw() {
+#ifdef DEBUG
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": real_run()." << endl;
+#endif // DEBUG
+ // No hace nada, porque solo actua cuando se manda algo con send().
+ while (!stop()) {
+ Glib::usleep(500000); // 1/2 segundo
+ }