]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/transmitter.cpp
* Se agrega un Tanque al ejemplo, y ANDA!!!!
[z.facultad/75.42/plaqui.git] / Server / src / transmitter.cpp
index b8635fa6c7f5fbed0c53c441f72deb5886136642..4211e51a0cc866828efaf6bdba632af6de24259a 100644 (file)
 // $Id$
 //
 
 // $Id$
 //
 
-#include "transmitter.h"
+#include "plaqui/server/transmitter.h"
 #include <socket++/sockinet.h>
 #include <string>
 #include <socket++/sockinet.h>
 #include <string>
+#ifdef DEBUG
+#      include <iostream>
+#endif // DEBUG
 
 
-using namespace Plaqui;
+using namespace std;
 
 
-Transmitter::Transmitter(std::string host, int port):
+namespace PlaQui {
+
+namespace Server {
+
+Transmitter::~Transmitter(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
+
+/// \todo debría conectarse en real_run() (?)
+Transmitter::Transmitter(string host, int port):
                Connection(sockbuf::sock_dgram) {
                Connection(sockbuf::sock_dgram) {
-#warning Not implemented!
+#ifdef DEBUG
+       cerr << __FILE__ << ": host = " << host
+               << " | port = " << port << endl;
+#endif // DEBUG
+       // FIXME - deberia ir en run().
        socket->connect(host.c_str(), port);
 }
 
        socket->connect(host.c_str(), port);
 }
 
+/// \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;
+       }
+#endif // DEBUG
+}
+
+} // namespace Server
+
+} // namespace PlaQui
+