mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-05 22:56:57 +02:00
Split code related to proxies list looping in cli_parse_clear_counters() to a new dedicated function. This function is placed in the new module stats-proxy.
15 lines
324 B
C
15 lines
324 B
C
#ifndef _HAPROXY_STATS_PROXY_H
|
|
#define _HAPROXY_STATS_PROXY_H
|
|
|
|
#include <haproxy/api-t.h>
|
|
|
|
struct buffer;
|
|
struct htx;
|
|
struct stconn;
|
|
|
|
int stats_dump_proxies(struct stconn *sc, struct buffer *buf, struct htx *htx);
|
|
|
|
void proxy_stats_clear_counters(int clrall, struct list *stat_modules);
|
|
|
|
#endif /* _HAPROXY_STATS_PROXY_H */
|