summaryrefslogtreecommitdiff
path: root/src/rgw/rgw_fcgi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rgw/rgw_fcgi.h')
-rw-r--r--src/rgw/rgw_fcgi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rgw/rgw_fcgi.h b/src/rgw/rgw_fcgi.h
index ccf48f5954d..97d425f1be4 100644
--- a/src/rgw/rgw_fcgi.h
+++ b/src/rgw/rgw_fcgi.h
@@ -11,13 +11,17 @@ class RGWFCGX : public RGWClientIO
{
FCGX_Request *fcgx;
protected:
+ void init_env(CephContext *cct);
int write_data(const char *buf, int len);
int read_data(char *buf, int len);
+ int send_status(const char *status, const char *status_name);
+ int send_100_continue();
+ int complete_header();
+
public:
RGWFCGX(FCGX_Request *_fcgx) : fcgx(_fcgx) {}
void flush();
- const char **envp();
};