mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-18 05:50:35 -04:00
This module is intended to serve as a placeholder for various diagnostics executed after the configuration file has been fully loaded.
11 lines
342 B
C
11 lines
342 B
C
#ifndef _HAPROXY_CFGDIAG_H
|
|
#define _HAPROXY_CFGDIAG_H
|
|
|
|
/* Placeholder to execute various diagnostic checks after the configuration file
|
|
* has been fully parsed. It will output a warning for each diagnostic found.
|
|
*
|
|
* Returns 0 if no diagnostic message has been found else 1.
|
|
*/
|
|
int cfg_run_diagnostics();
|
|
|
|
#endif /* _HAPROXY_CFGDIAG_H */
|