X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a9cb053146d2f1dc73e536ed87597f458deebea3..f5a1e732bf3907cabd004932aba3256b31d9d282:/Server/src/connection.cpp diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 6d48727..1b328c6 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -25,25 +25,66 @@ // $Id$ // -#include "connection.h" +#include "plaqui/server/connection.h" #include +#ifdef DEBUG +# include +#endif // DEBUG + +using namespace std; -using namespace Plaqui; +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 - std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl; + cerr << __FILE__ << ": sd = " << sd.sock; +#endif // DEBUG + host = socket->peerhost(); + port = socket->peerport(); +#ifdef DEBUG + cerr << " | host = " << host << " | port = " << port << endl; +#endif // DEBUG +} + +Connection::Connection(const sockbuf::type& type): + socket(type) { +#ifdef DEBUG + cerr << __FILE__ << ": type = " << type << endl; #endif // DEBUG } -/* -Connection::Connection(const sockinetbuf& sb): - socket(sb) { +Connection::Connection(const std::string& host, const Port& port): + host(host), port(port) { +#ifdef DEBUG + cerr << __FILE__ << ": host = " << host << " | port = " << port << endl; +#endif // DEBUG } -*/ -Connection::Connection(sockbuf::type type): - socket(type) { +void Connection::finish(bool attach) { + //socket_mutex.lock(); + socket->shutdown(sockbuf::shut_readwrite); + //socket_mutex.unlock(); + Runnable::finish(attach); } +const string& Connection::get_host(void) const { + return host; +} + +const Connection::Port& Connection::get_port(void) const { + return port; +} + +} // namespace Server + +} // namespace PlaQui +