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

Make CivetAuthHandler::authorize function pure virtual

This commit is contained in:
Neil Jensen
2016-01-11 10:32:18 -06:00
parent ed9ae22a65
commit eb79a551d8
2 changed files with 2 additions and 10 deletions

View File

@@ -119,7 +119,7 @@ class CIVETWEB_API CivetAuthHandler
* @param conn - the connection information
* @returns true if authorization succeeded, false otherwise
*/
virtual bool authorize(CivetServer *server, struct mg_connection *conn);
virtual bool authorize(CivetServer *server, struct mg_connection *conn) = 0;
};
/**