view src/core/nginx.h @ 9004:dde5cb0205ef quic

QUIC: fixed the "quic_stream_buffer_size" directive. The default value is now correctly set and the configuration is properly merged.
author Vladimir Homutov <vl@nginx.com>
date Tue, 08 Feb 2022 23:00:12 +0300
parents 57581198e51e
children 60b8f529db13 c32b775633d3
line wrap: on
line source


/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) Nginx, Inc.
 */


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


#define nginx_version      1021006
#define NGINX_VERSION      "1.21.6"
#define NGINX_VER          "nginx/" NGINX_VERSION

#ifdef NGX_BUILD
#define NGINX_VER_BUILD    NGINX_VER " (" NGX_BUILD ")"
#else
#define NGINX_VER_BUILD    NGINX_VER
#endif

#define NGINX_VAR          "NGINX"
#define NGX_OLDPID_EXT     ".oldbin"


#endif /* _NGINX_H_INCLUDED_ */