mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-14 11:06:56 +02:00
Add ->inc_err_cnt new callback to qcc_app_ops struct which can be called from xprt to increment the application level error code counters. It take the application context as first parameter to be generic and support new QUIC applications to come. Add h3_stats.c module with counters for all the frame types and error codes.
13 lines
240 B
C
13 lines
240 B
C
#ifndef _HAPROXY_H3_STATS_T_H
|
|
#define _HAPROXY_H3_STATS_T_H
|
|
|
|
#ifdef USE_QUIC
|
|
#ifndef USE_OPENSSL
|
|
#error "Must define USE_OPENSSL"
|
|
#endif
|
|
|
|
extern struct stats_module h3_stats_module;
|
|
|
|
#endif /* USE_QUIC */
|
|
#endif /* _HAPROXY_H3_STATS_T_H */
|