diff options
| author | lijia <[email protected]> | 2020-12-15 17:30:06 +0800 |
|---|---|---|
| committer | lijia <[email protected]> | 2020-12-15 17:30:06 +0800 |
| commit | 059a7a97dfa48dd36dc0c1650ecb5ce6bbaa0c95 (patch) | |
| tree | 8f63de60d45625bcc0b81b8c1600cf214a68f1b6 | |
| parent | d529c6eb2eb516b7d69185f41d13c9030f4f76a5 (diff) | |
修复tcp_lost_bit计数错误.v4.2.11
| -rw-r--r-- | src/inner_plug/sapp_assistant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inner_plug/sapp_assistant.cpp b/src/inner_plug/sapp_assistant.cpp index 4f12a1a..e317614 100644 --- a/src/inner_plug/sapp_assistant.cpp +++ b/src/inner_plug/sapp_assistant.cpp @@ -980,7 +980,7 @@ static int sapp_fs2_init(void) pfs_para->fs_id_count_array[SAPP_STAT_RCV_TCP] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Tcp_Pkt"); pfs_para->fs_id_length_array[SAPP_STAT_RCV_TCP] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Tcp_Bit"); - pfs_para->fs_id_count_array[SAPP_STAT_TCP_LOST_PKT] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Tcp_Lost_Bit"); + pfs_para->fs_id_length_array[SAPP_STAT_TCP_LOST_PKT] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Tcp_Lost_Bit"); pfs_para->fs_id_count_array[SAPP_STAT_RCV_UDP] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Udp_Pkt"); pfs_para->fs_id_length_array[SAPP_STAT_RCV_UDP] = FS_register(fs2_handle, FS_STYLE_FIELD, FS_CALC_CURRENT, "Udp_Bit"); |
