Commit 82568781df6febe71cb8e444ab3d554d35362aaf

confused htonl/ntohl
core/web/webserver.cpp
(1 / 1)
  
230230 }
231231
232232 struct in_addr in;
233 in.s_addr = ntohl(info->remote_ip);
233 in.s_addr = htonl(info->remote_ip);
234234 Logger::getInstance()->log(std::string("Mongoose: ") +
235235 "(Client " + inet_ntoa(in) + ") " +
236236 requestInfo +