mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-07 12:49:42 +00:00
8f2b855ab2
Released 1.3.1 with the following changes from 1.2.15 : - now, haproxy warns about missing timeout during startup to try to eliminate all those buggy configurations. - added "Content-Type: text/html" in responses wherever appropriate, as suggested by Cameron Simpson. - implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to test server's health - implemented "monitor-uri" so that haproxy can reply to a specific URI with an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies at once.
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
include/common/version.h
|
|
This file serves as a template for future include files.
|
|
|
|
Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation, version 2.1
|
|
exclusively.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _COMMON_VERSION_H
|
|
#define _COMMON_VERSION_H
|
|
|
|
#include <common/config.h>
|
|
|
|
#ifdef CONFIG_PRODUCT_NAME
|
|
#define PRODUCT_NAME CONFIG_PRODUCT_NAME
|
|
#else
|
|
#define PRODUCT_NAME "HAProxy"
|
|
#endif
|
|
|
|
#ifdef CONFIG_HAPROXY_VERSION
|
|
#define HAPROXY_VERSION CONFIG_HAPROXY_VERSION
|
|
#else
|
|
#define HAPROXY_VERSION "1.3.1"
|
|
#endif
|
|
|
|
#ifdef CONFIG_HAPROXY_DATE
|
|
#define HAPROXY_DATE CONFIG_HAPROXY_DATE
|
|
#else
|
|
#define HAPROXY_DATE "2006/07/09"
|
|
#endif
|
|
|
|
#endif /* _COMMON_VERSION_H */
|