]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/tcpserver.h
- Se sobreescribe el método Connection::finish() para que cierre el socket.
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / tcpserver.h
index 02906290f6cfd601fb95e4d8f03b3e1c50d3057e..1cd344f4da3599eea86ddade2da09cfc7df9783c 100644 (file)
@@ -32,6 +32,7 @@
 #include "plaqui/server/connection.h"
 #include <socket++/sockinet.h>
 #include <list>
+#include <vector>
 
 namespace PlaQui {
 
@@ -43,16 +44,33 @@ namespace Server {
         */
        class TCPServer: public Runnable {
 
-               // Tipos.
+               // Constantes.
 
                private:
 
                        /// Cantidad máxima de conexiones pendientes.
-                       static const unsigned MAX_PENDING_CONNECTIONS;
+                       static const unsigned MAX_PENDING_CONNECTIONS = 10;
+
+               // Tipos.
+
+               private:
 
                        /// Lista de conexiones de control.
                        typedef std::list<Connection*> ConnectionList;
 
+               public:
+
+                       /// Información sobre una conexión de contro.
+                       struct ConnectionInfo {
+                               /// Host.
+                               std::string host;
+                               /// Port.
+                               unsigned port;
+                       };
+
+                       /// Lista de información de conexiones de control.
+                       typedef std::vector<ConnectionInfo> ConnectionInfoList;
+
                // Atributos.
 
                private:
@@ -60,6 +78,9 @@ namespace Server {
                        /// Socket para escuchar conexiones.
                        sockinetbuf socket;
 
+                       /// Mutex para las conexiones.
+                       Glib::Mutex connections_mutex;
+
                        /// Conexiones de control.
                        ConnectionList connections;
 
@@ -104,6 +125,11 @@ namespace Server {
                         */
                        void on_connection_finished(Connection* connection);
 
+                       /**
+                        * Obtiene una lista conexiones de control abiertas.
+                        */
+                       ConnectionInfoList get_connected(void);
+
        };
 
 }