blob: a64c55aa31461e6d1ae60480d0e2870e8133ba80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <cstdio>
#include <string>
#include <vector>
#include "HttpRequest.h"
class CGIScript {
public:
CGIScript(const std::string& path, const HttpRequest&);
~CGIScript();
void set_environment(const char* key, const char* value);
bool is_open() const { return m_is_open; }
std::string read_output();
private:
FILE* m_pipe;
bool m_is_open{false};
std::vector<const char*> m_environment_variables;
};
|