set_status(405); // method not allowed } } // http http::Server().on_req(cb).start("0.0.0.0", 80); // https http::Server().on_req(cb).start( "0.0.0.0", 443, "privkey.pem", "certificate.pem" ); HTTP client void f() { http::Client c("https://github.com"); c.get...