File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 3
3
#ifndef FPM_REQUEST_H
4
4
#define FPM_REQUEST_H 1
5
5
6
- void fpm_request_accepting (); /* hanging in accept() */
7
- void fpm_request_reading_headers (); /* start reading fastcgi request from very first byte */
8
- void fpm_request_info (); /* not a stage really but a point in the php code, where all request params have become known to sapi */
9
- void fpm_request_executing (); /* the script is executing */
10
- void fpm_request_end (void ); /* request ended: script response have been sent to web server */
11
- void fpm_request_finished (); /* request processed: cleaning current request */
6
+ /* hanging in accept() */
7
+ void fpm_request_accepting ();
8
+ /* start reading fastcgi request from very first byte */
9
+ void fpm_request_reading_headers ();
10
+ /* not a stage really but a point in the php code, where all request params have become known to sapi */
11
+ void fpm_request_info ();
12
+ /* the script is executing */
13
+ void fpm_request_executing ();
14
+ /* request ended: script response have been sent to web server */
15
+ void fpm_request_end (void );
16
+ /* request processed: cleaning current request */
17
+ void fpm_request_finished ();
12
18
13
19
struct fpm_child_s ;
14
20
struct timeval ;
You can’t perform that action at this time.
0 commit comments