X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/b92547a5de3a3fb4f14a2bea4a4e776b8da3cb5c..a359eb714e150b2b59856d0056b9880aaaedd128:/Server/src/connection.cpp?ds=sidebyside diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 408239e..a8f17ea 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -46,17 +46,45 @@ Connection::~Connection(void) { Connection::Connection(const sockbuf::sockdesc& sd): socket(sd) { #ifdef DEBUG - cerr << __FILE__ << ": sd = " << sd.sock << 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, const std::string& host, + const Port& port): socket(type), host(host), port(port) { +#ifdef DEBUG + cerr << __FILE__ << ": type = " << type << " | host = " << host + << " | port = " << port << endl; #endif // DEBUG } -Connection::Connection(sockbuf::type type): - socket(type) { +Connection::Connection(const std::string& host, const Port& port): + host(host), port(port) { #ifdef DEBUG - cerr << __FILE__ << ": type = " << type << endl; + cerr << __FILE__ << ": host = " << host << " | port = " << port << endl; #endif // DEBUG } +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