X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e54fbe1822f4c536eb1f26476e95a8bb53d9511f..a9cb053146d2f1dc73e536ed87597f458deebea3:/Server/src/connection.h?ds=inline diff --git a/Server/src/connection.h b/Server/src/connection.h index 306e273..df4cf2c 100644 --- a/Server/src/connection.h +++ b/Server/src/connection.h @@ -38,6 +38,9 @@ namespace Plaqui { protected: + /// Tamaño del buffer usado para enviar y recibir datos. + static const int BUFFER_SIZE = 4096; + /// Socket a usar en la conexión. iosockinet socket; @@ -48,12 +51,19 @@ namespace Plaqui { */ virtual ~Connection(void) {} + /** + * Constructor. + * + * \param socket Descriptor de socket a usar en la conexión. + */ + Connection(const sockbuf::sockdesc& sd); + /** * Constructor. * * \param socket Socket a usar en la conexión. */ - Connection(const sockinetbuf& sb); + //Connection(const sockinetbuf& sb); /** * Constructor.