X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/6bffb655ac989fe4f115763270f84175bf24e4bb..a0481d50f6da9cac5efd3502c3657b3fc461ec0d:/Server/include/plaqui/server/connection.h diff --git a/Server/include/plaqui/server/connection.h b/Server/include/plaqui/server/connection.h index 0d7660a..504875a 100644 --- a/Server/include/plaqui/server/connection.h +++ b/Server/include/plaqui/server/connection.h @@ -38,12 +38,12 @@ namespace Server { /// Conexión. class Connection: public Runnable { - // Constantes. + // Tipos. - protected: + public: - /// Tamaño del buffer usado para enviar y recibir datos. - //static const int BUFFER_SIZE = 4096; + /// Puerto. + typedef unsigned Port; // Atributos. @@ -52,6 +52,12 @@ namespace Server { /// Socket a usar en la conexión. iosockinet socket; + /// Host. + std::string host; + + /// Puerto. + Port port; + /// Mutex para el socket. //Glib::Mutex socket_mutex; @@ -76,7 +82,15 @@ namespace Server { * * \param type Tipo de socket a usar. */ - Connection(sockbuf::type type); + Connection(const sockbuf::type& type); + + /** + * Constructor. + * + * \param host Host a donde conectarse. + * \param port Puerto a donde conectarse. + */ + Connection(const std::string& host, const Port& port); /** * Finaliza la conexión. @@ -92,12 +106,12 @@ namespace Server { /** * Obtiene el nombre del host local de la conexión. */ - std::string get_peerhost(void); + const std::string& get_host(void) const; /** * Obtiene el puerto local de la conexión. */ - unsigned get_peerport(void); + const Port& get_port(void) const; };