diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-02-12 18:54:34 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-02-12 18:54:34 +0100 |
commit | aa79e8701d39de2a24b2de7b97d3fc137e87b27b (patch) | |
tree | 88af00d49ee97f2d113baed3ecbd17e0305b775d /plugins/fcgi/fastcgiprocess.h | |
parent | 3282755c3798b695177c961a5745267cda6c21c4 (diff) |
Enable multiple arguments for FCGI app when run via webapp-runner
Diffstat (limited to 'plugins/fcgi/fastcgiprocess.h')
-rw-r--r-- | plugins/fcgi/fastcgiprocess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fcgi/fastcgiprocess.h b/plugins/fcgi/fastcgiprocess.h index 18a5d5b..4c01609 100644 --- a/plugins/fcgi/fastcgiprocess.h +++ b/plugins/fcgi/fastcgiprocess.h @@ -10,8 +10,8 @@ #include <sys/mman.h> #include <sys/types.h> -void run_fcgi_app(const std::string& command, const std::string& host, unsigned short port); -void run_fcgi_app(const std::string& command, const std::filesystem::path& socket_path); +void run_fcgi_app(const std::string& command, const std::string& host, unsigned short port, int arg, char* argv[]); +void run_fcgi_app(const std::string& command, const std::filesystem::path& socket_path, int arg, char* argv[]); class FastCGIProcess { |