// $Id$
//
-#include "connection.h"
+#include "plaqui/server/connection.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 sockbuf::sockdesc& sd):
+PlaQui::Server::Connection::Connection(const sockbuf::sockdesc& sd):
socket(sd) {
#ifdef DEBUG
std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
#endif // DEBUG
}
-/*
-Connection::Connection(const sockinetbuf& sb):
- socket(sb) {
-}
-*/
-
-Connection::Connection(sockbuf::type type):
+PlaQui::Server::Connection::Connection(sockbuf::type type):
socket(type) {
+#ifdef DEBUG
+ std::cerr << __FILE__ << ": type = " << type << std::endl;
+#endif // DEBUG
}