]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
* Se agrega un Tanque al ejemplo, y ANDA!!!!
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 086548a289a2114005ec213c7d77caff9d2823f9..1dc6b6d3d9a45d01385021035114312d84aa0194 100644 (file)
 // $Id$
 //
 
 // $Id$
 //
 
-#include "connection.h"
+#include "plaqui/server/connection.h"
 #include <socket++/sockinet.h>
 #include <socket++/sockinet.h>
+#ifdef DEBUG
+#      include <iostream>
+#endif // DEBUG
 
 
-using namespace Plaqui;
+using namespace std;
 
 
-Connection::Connection(const sockinetbuf& sb):
-               socket(sb) {
+namespace PlaQui {
+
+namespace Server {
+
+Connection::~Connection(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
+
+Connection::Connection(const sockbuf::sockdesc& sd):
+               socket(sd) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": sd = " << sd.sock << endl;
+#endif // DEBUG
 }
 
 Connection::Connection(sockbuf::type type):
                socket(type) {
 }
 
 Connection::Connection(sockbuf::type type):
                socket(type) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": type = " << type << endl;
+#endif // DEBUG
+}
+
+void Connection::finish(bool attach) {
+       //socket_mutex.lock();
+       socket->shutdown(sockbuf::shut_readwrite);
+       //socket_mutex.unlock();
+       Runnable::finish(attach);
 }
 
 }
 
+string Connection::get_peerhost(void) {
+       //socket_mutex.lock();
+       string host = socket->peerhost();
+       //socket_mutex.unlock();
+       return host;
+}
+
+unsigned Connection::get_peerport(void) {
+       //socket_mutex.lock();
+       unsigned port = socket->peerport();
+       //socket_mutex.unlock();
+       return port;
+}
+
+} // namespace Server
+
+} // namespace PlaQui
+