Sha256: 5e9706aebb0c814ae73d98f7fcbb47fd486efc41983a4f37922765d90fcce273

Contents?: true

Size: 837 Bytes

Versions: 9

Compression:

Stored size: 837 Bytes

Contents

/*
 * 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_ */

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nginxtra-1.4.7.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.6.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.5.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.4.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.3.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.2.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.1.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.0.9 vendor/nginx/src/http/ngx_http_spdy_module.h
nginxtra-1.4.0.8 vendor/nginx/src/http/ngx_http_spdy_module.h