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.
25 lines
794 B
25 lines
794 B
#include "webserv.hpp"
|
|
|
|
Server::Server(JSONNode *server) {
|
|
JSONObject datas = server->obj();
|
|
if (datas["server_name"])
|
|
_name = datas["server_name"]->str();
|
|
if (datas["listens"]) {
|
|
JSONList listens = datas["listens"]->lst();
|
|
for (JSONList::iterator i = listens.begin(); i < listens.end(); i++) {
|
|
//_listens.push_back((*i)->str());
|
|
Socket sock((*i)->str());
|
|
_sockets.push_back(sock);
|
|
}
|
|
//_port = std::atoi(_listens.front().c_str());
|
|
}
|
|
//_routes["default"] = new Route(datas["root"], datas["return"],
|
|
//datas["index"], datas["autoindex"]);
|
|
}
|
|
|
|
void Server::check() {
|
|
for (std::vector<Socket>::iterator it = _sockets.begin();
|
|
it < _sockets.end(); it++) {
|
|
(*it).check();
|
|
}
|
|
}
|
|
|