view src/core/nginx.h @ 8964:ad67fcc30567 quic

HTTP/3: removed useless warning regarding OpenSSL library. After 0e6528551f26, it became impossible to run into this path.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 13 Jan 2022 15:57:15 +0300
parents 284f03d6f154
children 57581198e51e
line wrap: on
line source


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


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


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