]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
Ya se mandan seniales cuando se reciben comandos.
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 44d74dfaf5a2d9c508a9c9d069fdcfdd2adf7c0e..408239e45bc206e15016d5f3c4247f3852e8eb0e 100644 (file)
 
 #include "plaqui/server/connection.h"
 #include <socket++/sockinet.h>
 
 #include "plaqui/server/connection.h"
 #include <socket++/sockinet.h>
+#ifdef DEBUG
+#      include <iostream>
+#endif // DEBUG
 
 
-using namespace Plaqui;
+using namespace std;
 
 
-Connection::Connection(const sockbuf::sockdesc& sd):
-               socket(sd) {
+namespace PlaQui {
+
+namespace Server {
+
+Connection::~Connection(void) {
 #ifdef DEBUG
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
+       cerr << __FILE__ << ": destructor." << endl;
 #endif // DEBUG
 }
 
 #endif // DEBUG
 }
 
-/*
-Connection::Connection(const sockinetbuf& sb):
-               socket(sb) {
+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
 }
 
 }
 
+} // namespace Server
+
+} // namespace PlaQui
+