yhirose/cpp-httplib

Missing `Head` method for server

Closed this issue · 1 comments

I want to write a server that can handle Head HTTP Method, but I don't see any function to to this.

Also httplib::Server and httplib::SSLServer are missing Head HTTP Method.

cpp-httplib server handles HEAD requests with Get handlers returning no content.

svr_.Get("/hi",

TEST_F(ServerTest, HeadMethod200) {