+Connection::Connection(const std::string& host, const Port& port):
+ host(host), port(port) {
+#ifdef DEBUG
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": host = " << host << " | port = " << port << endl;
+#endif // DEBUG
+}
+
+void Connection::finish(bool attach) {
+#ifdef DEBUG
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": finish(attach = " << attach << ")." << endl;
+#endif // DEBUG
+ //socket_mutex.lock();
+ try {
+ socket->shutdown(sockbuf::shut_readwrite);
+ } catch (const sockerr& e) {
+ error(e.serrno(), e.errstr());
+ }
+ //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
+