From e0451ef59a69eda29efa6bc22294b2bcf8b8b600 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Fri, 29 May 2020 11:31:40 +0200 Subject: Authentication infrastructure --- plugins/fcgi/fcgi.cpp | 5 +++++ plugins/fcgi/fcgi.h | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'plugins/fcgi') diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index 6f4ad1f..22a4d40 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -538,3 +538,8 @@ std::string fcgi_plugin::generate_page( } } +bool fcgi_plugin::has_own_authentication() +{ + return false; +} + diff --git a/plugins/fcgi/fcgi.h b/plugins/fcgi/fcgi.h index 289c4d6..167a356 100644 --- a/plugins/fcgi/fcgi.h +++ b/plugins/fcgi/fcgi.h @@ -41,12 +41,14 @@ public: fcgi_plugin(); ~fcgi_plugin(); - std::string name(); + std::string name() override; std::string generate_page( std::function& GetServerParam, std::function& GetRequestParam, // request including body (POST...) std::function& SetResponseHeader // to be added to result string - ); + ) override; + + bool has_own_authentication() override; std::string fcgiQuery(FCGIContext& context); }; -- cgit v1.2.3