]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
Se agrega generacion de XML para dar el estado actual de la planta simulada.
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 408239e45bc206e15016d5f3c4247f3852e8eb0e..1b328c643e0d71d51228edf11cef177e95685a25 100644 (file)
@@ -46,17 +46,44 @@ Connection::~Connection(void) {
 Connection::Connection(const sockbuf::sockdesc& sd):
                socket(sd) {
 #ifdef DEBUG
 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
 }
 
 #endif // DEBUG
 }
 
-Connection::Connection(sockbuf::type type):
+Connection::Connection(const sockbuf::type& type):
                socket(type) {
 #ifdef DEBUG
        cerr << __FILE__ << ": type = " << type << endl;
 #endif // DEBUG
 }
 
                socket(type) {
 #ifdef DEBUG
        cerr << __FILE__ << ": type = " << type << endl;
 #endif // DEBUG
 }
 
+Connection::Connection(const std::string& host, const Port& port):
+               host(host), port(port) {
+#ifdef DEBUG
+       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
 } // namespace Server
 
 } // namespace PlaQui