Open fedemgp opened 3 years ago
https://github.com/agustinaa235/tp3/blob/84e9b2dd15b37a9cbf635d90dadd7eeef99fd926/server_src/server_conexion_cliente.cpp#L53-L54
Respetá el concepto de RAII, el destructor podría haber hecho lo siguiente y ahorrarte MUCHISIMO trabajo
Socket::~Socket() { if (this->fd == -1) return; this->shutdown(SHUT_RDWR); this->close(); this->fd = -1; }
https://github.com/agustinaa235/tp3/blob/84e9b2dd15b37a9cbf635d90dadd7eeef99fd926/server_src/server_conexion_cliente.cpp#L53-L54
Respetá el concepto de RAII, el destructor podría haber hecho lo siguiente y ahorrarte MUCHISIMO trabajo