X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/65bf2eef7ac487329a3af3cd1c06e7957afc3a6c..2f5c973fdf3f7fb25b13996b66d566c58066f6a0:/Server/src/connection.cpp?ds=sidebyside diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 086548a..408239e 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -25,16 +25,39 @@ // $Id$ // -#include "connection.h" +#include "plaqui/server/connection.h" #include +#ifdef DEBUG +# include +#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 +