haproxy/include/haproxy/quic_stats.h
Frédéric Lécaille 3ccea6d276 MINOIR: quic_stats: add QUIC connection errors counters
Add statistical counters for all the transport level connection errrors.
2022-05-30 09:59:26 +02:00

15 lines
313 B
C

#ifndef _HAPROXY_QUIC_STATS_H
#define _HAPROXY_QUIC_STATS_H
#ifdef USE_QUIC
#ifndef USE_OPENSSL
#error "Must define USE_OPENSSL"
#endif
#include <haproxy/quic_stats-t.h>
void quic_stats_transp_err_count_inc(struct quic_counters *ctrs, int error_code);
#endif /* USE_QUIC */
#endif /* _HAPROXY_QUIC_STATS_H */