Tree @release-1.5.4 (Download .tar.gz)
- ..
- modules
- ngx_http.c
- ngx_http.h
- ngx_http_busy_lock.c
- ngx_http_busy_lock.h
- ngx_http_cache.h
- ngx_http_config.h
- ngx_http_copy_filter_module.c
- ngx_http_core_module.c
- ngx_http_core_module.h
- ngx_http_file_cache.c
- ngx_http_header_filter_module.c
- ngx_http_parse.c
- ngx_http_parse_time.c
- ngx_http_postpone_filter_module.c
- ngx_http_request.c
- ngx_http_request.h
- ngx_http_request_body.c
- ngx_http_script.c
- ngx_http_script.h
- ngx_http_spdy.c
- ngx_http_spdy.h
- ngx_http_spdy_filter_module.c
- ngx_http_spdy_module.c
- ngx_http_spdy_module.h
- ngx_http_special_response.c
- ngx_http_upstream.c
- ngx_http_upstream.h
- ngx_http_upstream_round_robin.c
- ngx_http_upstream_round_robin.h
- ngx_http_variables.c
- ngx_http_variables.h
- ngx_http_write_filter_module.c
ngx_http_spdy_module.h @release-1.5.4 — raw · history · blame
/*
* Copyright (C) Nginx, Inc.
* Copyright (C) Valentin V. Bartenev
*/
#ifndef _NGX_HTTP_SPDY_MODULE_H_INCLUDED_
#define _NGX_HTTP_SPDY_MODULE_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
typedef struct {
size_t recv_buffer_size;
u_char *recv_buffer;
} ngx_http_spdy_main_conf_t;
typedef struct {
size_t pool_size;
ngx_uint_t concurrent_streams;
ngx_uint_t streams_index_mask;
ngx_msec_t recv_timeout;
ngx_msec_t keepalive_timeout;
ngx_int_t headers_comp;
} ngx_http_spdy_srv_conf_t;
extern ngx_module_t ngx_http_spdy_module;
#endif /* _NGX_HTTP_SPDY_MODULE_H_INCLUDED_ */
|