]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
Se corrige bug reportado por ricky.
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 086548a289a2114005ec213c7d77caff9d2823f9..18b5909f25bb4df3d33a6b1732d4cd1afc7e5072 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;
+PlaQui::Server::Connection::~Connection(void) {
+#ifdef DEBUG
+       std::cerr << __FILE__ << ": destructor." << std::endl;
+#endif // DEBUG
+}
 
 
-Connection::Connection(const sockinetbuf& sb):
-               socket(sb) {
+PlaQui::Server::Connection::Connection(const sockbuf::sockdesc& sd):
+               socket(sd) {
+#ifdef DEBUG
+       std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
+#endif // DEBUG
 }
 
 }
 
-Connection::Connection(sockbuf::type type):
+PlaQui::Server::Connection::Connection(sockbuf::type type):
                socket(type) {
                socket(type) {
+#ifdef DEBUG
+       std::cerr << __FILE__ << ": type = " << type << std::endl;
+#endif // DEBUG
 }
 
 }