The web server implementation was extremely simple. If you noticed, I am using DLib. DLib adds some of the simplest socket APIs you could imagine!
PHP Code:
class web_server : public server_http
{
const std::string on_request(const incoming_things& incoming, outgoing_things& outgoing)
{
return "<html><body><h1>Hello World!</h1></body></html>";
}
};
I used this, plus a bunch of HTML + CSS + JavaScript skills to make this. I think I should make a new thread about this software because it is something that many teams might want for communications. The main problem is speed, but it has an extremely vast feature set!