Skip to content

Commit d73ed88

Browse files
committed
more coding style fixes.
1 parent cefe993 commit d73ed88

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ngx_http_srcache_filter_module.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ typedef struct {
1414
ngx_http_complex_value_t args;
1515
} ngx_http_srcache_request_t;
1616

17+
1718
typedef struct {
1819
ngx_uint_t method;
1920
ngx_str_t method_name;
@@ -23,6 +24,7 @@ typedef struct {
2324
ssize_t content_length_n;
2425
} ngx_http_srcache_parsed_request_t;
2526

27+
2628
typedef struct {
2729
ngx_http_srcache_request_t *fetch;
2830
ngx_http_srcache_request_t *store;
@@ -31,15 +33,18 @@ typedef struct {
3133
unsigned postponed_to_access_phase_end;
3234
} ngx_http_srcache_loc_conf_t;
3335

36+
3437
typedef struct {
3538
unsigned postponed_to_access_phase_end;
3639
} ngx_http_srcache_main_conf_t;
3740

41+
3842
typedef struct ngx_http_srcache_ctx_s ngx_http_srcache_ctx_t;
3943

4044
typedef struct ngx_http_srcache_postponed_request_s
4145
ngx_http_srcache_postponed_request_t;
4246

47+
4348
struct ngx_http_srcache_ctx_s {
4449
unsigned waiting_subrequest:1;
4550
unsigned request_done:1;
@@ -63,6 +68,7 @@ struct ngx_http_srcache_ctx_s {
6368
ngx_http_request_t *fetch_sr;
6469
};
6570

71+
6672
struct ngx_http_srcache_postponed_request_s {
6773
ngx_http_srcache_postponed_request_t *next;
6874

0 commit comments

Comments
 (0)