You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
371 B

2 years ago
#pragma once
#include "webserv.hpp"
class Master {
2 years ago
int _fd;
std::vector<Client *> _childs;
2 years ago
struct sockaddr_in _address;
2 years ago
public:
Master(ip_port_t listen);
2 years ago
~Master(void);
2 years ago
void pre_select(void);
void post_select(Env *env);
2 years ago
Server *choose_server(Env *env, string host);
2 years ago
ip_port_t _listen;
2 years ago
static fd_set _readfds;
2 years ago
static int _max_fd, _min_fd;
2 years ago
};