view src/core/nginx.h @ 8101:42bc158a47ec

Fixed PROXY protocol to use ngx_memcpy()/ngx_memcmp().
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 08 Nov 2022 12:48:21 +0300
parents a2924855f453
children d85ce1df2313
line wrap: on
line source


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


#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


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