mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-10 19:38:45 +02:00
「🔨」 fix: corrected invalid read and leak
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/04/14 14:14:39 by adjoly #+# #+# */
|
||||
/* Updated: 2025/04/25 14:33:54 by adjoly ### ########.fr */
|
||||
/* Updated: 2025/04/25 15:15:48 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -37,9 +37,14 @@ class Client {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool isToClose() {
|
||||
return toClose;
|
||||
}
|
||||
|
||||
private:
|
||||
void _getRequest(std::string);
|
||||
|
||||
bool toClose;
|
||||
struct pollfd *_pfd;
|
||||
struct sockaddr_in _client_addr;
|
||||
http::IRequest *_request;
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/04/11 17:45:43 by adjoly #+# #+# */
|
||||
/* Updated: 2025/04/25 14:52:50 by adjoly ### ########.fr */
|
||||
/* Updated: 2025/04/25 15:16:52 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -41,13 +41,6 @@ class Server {
|
||||
*/
|
||||
void _run(void);
|
||||
|
||||
/**
|
||||
* @brief Used to handle client request
|
||||
*
|
||||
* @param the position in the _client_data
|
||||
*/
|
||||
bool _handle_client(Client *);
|
||||
|
||||
/**
|
||||
* @brief Can be used to fill the vector passed as parameters with all the
|
||||
* port and host in the config
|
||||
@ -80,6 +73,8 @@ class Server {
|
||||
|
||||
Client *_getClient(int);
|
||||
|
||||
void _destroy_clients(void);
|
||||
|
||||
config::Config
|
||||
*_conf; // Pointer to the configuration class (with all config in)
|
||||
Logger *_log; // Pointer to the log class
|
||||
|
Reference in New Issue
Block a user