1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-12-22 04:02:04 +03:00

HEAD request handler for C++ interface

This commit is contained in:
Philipp Hasper
2016-02-11 08:05:29 +01:00
parent b151ecc9bc
commit 36ef459a78
2 changed files with 19 additions and 0 deletions

View File

@@ -60,6 +60,15 @@ class CIVETWEB_API CivetHandler
*/
virtual bool handlePost(CivetServer *server, struct mg_connection *conn);
/**
* Callback method for HEAD request.
*
* @param server - the calling server
* @param conn - the connection information
* @returns true if implemented, false otherwise
*/
virtual bool handleHead(CivetServer *server, struct mg_connection *conn);
/**
* Callback method for PUT request.
*