+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
+