view src/core/nginx.h @ 8405:0b94e2df6389 quic

QUIC: fixed ngx_quic_send_ack_range() function. Created frame was not added to the output queue.
author Vladimir Homutov <vl@nginx.com>
date Wed, 07 Apr 2021 13:09:26 +0300
parents 19799b290812
children 1231c9e3afb8 c40f7a65c506
line wrap: on
line source


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


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


#define nginx_version      1019010
#define NGINX_VERSION      "1.19.10"
#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_ */