27 lines
586 B
C
27 lines
586 B
C
|
|
/*
|
|
* Copyright (c) Yichun Zhang (agentzh)
|
|
*/
|
|
|
|
|
|
#ifndef NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H
|
|
#define NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H
|
|
|
|
|
|
#include "ngx_http_headers_more_filter_module.h"
|
|
|
|
|
|
/* output header setters and clearers */
|
|
|
|
ngx_int_t ngx_http_headers_more_exec_cmd(ngx_http_request_t *r,
|
|
ngx_http_headers_more_cmd_t *cmd);
|
|
|
|
char *ngx_http_headers_more_set_headers(ngx_conf_t *cf,
|
|
ngx_command_t *cmd, void *conf);
|
|
|
|
char *ngx_http_headers_more_clear_headers(ngx_conf_t *cf,
|
|
ngx_command_t *cmd, void *conf);
|
|
|
|
|
|
#endif /* NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H */
|