view src/core/nginx.h @ 7886:26cb2f3259b1 quic

HTTP/3: reallocate strings inserted into the dynamic table. They should always be allocated from the main QUIC connection pool.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 14 May 2020 16:02:32 +0300
parents 2a9aeb3426c3
children 7927f8fb36dd ed3a10cf88e8
line wrap: on
line source


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


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


#define nginx_version      1017010
#define NGINX_VERSION      "1.17.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_ */