Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small CS fix #5975

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 12 additions & 6 deletions sapi/fpm/fpm/fpm_request.h
Expand Up @@ -3,12 +3,18 @@
#ifndef FPM_REQUEST_H
#define FPM_REQUEST_H 1

void fpm_request_accepting(); /* hanging in accept() */
void fpm_request_reading_headers(); /* start reading fastcgi request from very first byte */
void fpm_request_info(); /* not a stage really but a point in the php code, where all request params have become known to sapi */
void fpm_request_executing(); /* the script is executing */
void fpm_request_end(void); /* request ended: script response have been sent to web server */
void fpm_request_finished(); /* request processed: cleaning current request */
/* hanging in accept() */
void fpm_request_accepting();
/* start reading fastcgi request from very first byte */
void fpm_request_reading_headers();
/* not a stage really but a point in the php code, where all request params have become known to sapi */
void fpm_request_info();
/* the script is executing */
void fpm_request_executing();
/* request ended: script response have been sent to web server */
void fpm_request_end(void);
/* request processed: cleaning current request */
void fpm_request_finished();

struct fpm_child_s;
struct timeval;
Expand Down