// $Id$
//
-#include "connection.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 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) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": type = " << type << endl;
+#endif // DEBUG
}
+} // namespace Server
+
+} // namespace PlaQui
+