This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/common/include/tfe_stat.h

24 lines
308 B
C

#include "tfe_types.h"
enum TFE_STAT_FIELD
{
STREAM_NUM=0,
STREAM_OPEN,
STREAM_CLOSE,
STREAM_ERROR,
SSL_NUM,
SSL_OPEN,
SSL_CLOSE,
SSL_ERROR,
SNI_PEAK_FAIL,
IN_BYTES,
OUT_BYTES,
TFE_STAT_MAX
};
struct tfe_stats
{
long long value[TFE_STAT_MAX];
void * fs_handle;
int fs_ids[TFE_STAT_MAX];
};