X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/6e0194f46ac77c18bfeabf84ef94a32f23e41073..751302dd67ffdeb0dfe72c4d2a7a2d58303cf5f3:/Server/src/connection.cpp diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 44d74df..18b5909 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -27,23 +27,27 @@ #include "plaqui/server/connection.h" #include +#ifdef DEBUG +# include +#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 }