diff options
| author | luwenpeng <[email protected]> | 2022-12-29 10:24:02 +0800 |
|---|---|---|
| committer | luwenpeng <[email protected]> | 2022-12-29 10:24:05 +0800 |
| commit | 0f542d376f798af27857d76843463556e2f2324d (patch) | |
| tree | 1a6854c27b9ab6b3270baded789eecf41752dec3 /platform/src/proxy.cpp | |
| parent | 326864841480f2b764547b75fd5bc890b7204c48 (diff) | |
TSG-13196 Decrypted Traffic Steering增加FieldStat字段
* stee_ssl_conn
* stee_http_conn
* stee_c_tx_B
* stee_s_rx_B
* stee_s_tx_B
* stee_c_rx_B
Diffstat (limited to 'platform/src/proxy.cpp')
| -rw-r--r-- | platform/src/proxy.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/platform/src/proxy.cpp b/platform/src/proxy.cpp index f1fb865..869a0bb 100644 --- a/platform/src/proxy.cpp +++ b/platform/src/proxy.cpp @@ -461,6 +461,18 @@ static const char * __str_stat_spec_map[] = [STAT_STREAM_INCPT_UP_BYTES] = "ustm_incpt_B", [STAT_STREAM_TCP_PLAIN] = "plain", [STAT_STREAM_TCP_SSL] = "ssl", + + [STAT_STEERING_SSL_CONN] = "stee_ssl_conn", + [STAT_STEERING_HTTP_CONN] = "stee_http_conn", + [STAT_STEERING_CLIENT_TX_B] = "stee_c_tx_B", + [STAT_STEERING_SERVER_RX_B] = "stee_s_rx_B", + [STAT_STEERING_SERVER_TX_B] = "stee_s_tx_B", + [STAT_STEERING_CLIENT_RX_B] = "stee_c_rx_B", + [STAT_STEERING_CLIENT_ERR] = "stee_c_err", + [STAT_STEERING_SERVER_ERR] = "stee_s_err", + [STAT_STEERING_CLIENT_EOF] = "stee_c_eof", + [STAT_STEERING_SERVER_EOF] = "stee_s_eof", + [TFE_STAT_MAX] = NULL }; |
