File: h3_stats.h

package info (click to toggle)
haproxy 2.6.12-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,096 kB
  • sloc: ansic: 211,463; javascript: 2,442; sh: 2,173; xml: 1,756; python: 1,301; makefile: 1,083; perl: 168
file content (17 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _HAPROXY_H3_STATS_H
#define _HAPROXY_H3_STATS_H

#ifdef USE_QUIC
#ifndef USE_OPENSSL
#error "Must define USE_OPENSSL"
#endif

#include <haproxy/h3_stats-t.h>

struct h3_counters;

void h3_inc_err_cnt(void *ctx, int error_code);
void h3_inc_frame_type_cnt(struct h3_counters *ctrs, int frm_type);

#endif /* USE_QUIC */
#endif /* _HAPROXY_H3_STATS_H */