diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2025-01-06 18:58:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-06 18:58:24 +0100 |
commit | c34b692a4b33886525c147a94469745609f416ad (patch) | |
tree | b542c9af20e9ed4fd549f0cf5d8fd5003636bc1a /src/lib/protocols/ssh.c | |
parent | 1d99eb37d7ca382b8e77cc4694e3aaf36d3987db (diff) |
Classifications "by-port"/"by-ip" should never change (#2656)
Add a new variable to keep track of internal partial classification
Diffstat (limited to 'src/lib/protocols/ssh.c')
-rw-r--r-- | src/lib/protocols/ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ssh.c b/src/lib/protocols/ssh.c index bf2af2aac..bdca8c059 100644 --- a/src/lib/protocols/ssh.c +++ b/src/lib/protocols/ssh.c @@ -441,7 +441,7 @@ static void ndpi_search_ssh_tcp(struct ndpi_detection_module_struct *ndpi_struct #endif NDPI_LOG_DBG2(ndpi_struct, "ssh stage 1 passed\n"); - flow->guessed_protocol_id = NDPI_PROTOCOL_SSH; + flow->fast_callback_protocol_id = NDPI_PROTOCOL_SSH; #ifdef SSH_DEBUG printf("[SSH] [completed stage: %u]\n", flow->l4.tcp.ssh_stage); |