Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros | Variables
ngx_http_header_filter_module.c File Reference
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <nginx.h>
Include dependency graph for ngx_http_header_filter_module.c:

Go to the source code of this file.

Macros

#define NGX_HTTP_LAST_2XX   207
#define NGX_HTTP_OFF_3XX   (NGX_HTTP_LAST_2XX - 200)
#define NGX_HTTP_LAST_3XX   308
#define NGX_HTTP_OFF_4XX   (NGX_HTTP_LAST_3XX - 301 + NGX_HTTP_OFF_3XX)
#define NGX_HTTP_LAST_4XX   417
#define NGX_HTTP_OFF_5XX   (NGX_HTTP_LAST_4XX - 400 + NGX_HTTP_OFF_4XX)
#define NGX_HTTP_LAST_5XX   508

Variables

ngx_module_t ngx_http_header_filter_module
ngx_http_header_out_t ngx_http_headers_out []

Macro Definition Documentation

#define NGX_HTTP_LAST_2XX   207
#define NGX_HTTP_LAST_3XX   308
#define NGX_HTTP_LAST_4XX   417
#define NGX_HTTP_LAST_5XX   508
#define NGX_HTTP_OFF_3XX   (NGX_HTTP_LAST_2XX - 200)
#define NGX_HTTP_OFF_4XX   (NGX_HTTP_LAST_3XX - 301 + NGX_HTTP_OFF_3XX)
#define NGX_HTTP_OFF_5XX   (NGX_HTTP_LAST_4XX - 400 + NGX_HTTP_OFF_4XX)

Variable Documentation

ngx_module_t ngx_http_header_filter_module
Initial value:
{
&ngx_http_header_filter_module_ctx,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
}

Definition at line 33 of file ngx_http_header_filter_module.c.

ngx_http_header_out_t ngx_http_headers_out[]
Initial value:
{
{ ngx_string("Server"), offsetof(ngx_http_headers_out_t, server) },
{ ngx_string("Date"), offsetof(ngx_http_headers_out_t, date) },
{ ngx_string("Content-Length"),
offsetof(ngx_http_headers_out_t, content_length) },
{ ngx_string("Content-Encoding"),
offsetof(ngx_http_headers_out_t, content_encoding) },
{ ngx_string("Location"), offsetof(ngx_http_headers_out_t, location) },
{ ngx_string("Last-Modified"),
offsetof(ngx_http_headers_out_t, last_modified) },
{ ngx_string("Accept-Ranges"),
offsetof(ngx_http_headers_out_t, accept_ranges) },
{ ngx_string("Expires"), offsetof(ngx_http_headers_out_t, expires) },
{ ngx_string("Cache-Control"),
offsetof(ngx_http_headers_out_t, cache_control) },
{ ngx_string("ETag"), offsetof(ngx_http_headers_out_t, etag) },
}

Definition at line 132 of file ngx_http_header_filter_module.c.