end_header(s);
}
+void dump_continue(struct req_state *s)
+{
+ dump_status(s, "100");
+ FCGX_FFlush(s->fcgx->out);
+}
+
void dump_range(struct req_state *s, off_t ofs, off_t end)
{
CGI_PRINTF(s->fcgx->out,"Content-Range: bytes %d-%d/%d\n", (int)ofs, (int)end, (int)end + 1);
extern void close_section(struct req_state *s, const char *name);
extern void dump_bucket(struct req_state *s, RGWObjEnt& obj);
extern void abort_early(struct req_state *s, int err);
+extern void dump_continue(struct req_state *s);
extern void list_all_buckets_end(struct req_state *s);
extern void dump_value(struct req_state *s, const char *name, const char *fmt, ...);
extern void dump_time(struct req_state *s, const char *name, time_t *t);