diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-08-05 15:15:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 15:15:45 +0200 |
commit | 1d4e27c4739f74ccef19fde7e6008d725ea93a69 (patch) | |
tree | da0d6d7c177488752834482e61c6d802d3d79f82 /src/lib/protocols/softether.c | |
parent | c0732eda45884de91e0c221e9dd23eeec364bf68 (diff) |
Further simplification of `ndpi_process_extra_packet()` (#1698)
See 95e16872.
After c0732eda, we can safely remove the protocol list from
`ndpi_process_extra_packet()`.
The field `flow->check_extra_packets` is redundant; remove it.
Diffstat (limited to 'src/lib/protocols/softether.c')
-rw-r--r-- | src/lib/protocols/softether.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/protocols/softether.c b/src/lib/protocols/softether.c index 10db4be2a..4f62f1c4a 100644 --- a/src/lib/protocols/softether.c +++ b/src/lib/protocols/softether.c @@ -59,7 +59,6 @@ static void ndpi_int_softether_add_connection(struct ndpi_detection_module_struc struct ndpi_flow_struct * const flow) { NDPI_LOG_INFO(ndpi_struct, "found softether\n"); - flow->check_extra_packets = 1; flow->max_extra_packets_to_check = 15; flow->extra_packets_func = ndpi_search_softether_again; @@ -330,8 +329,6 @@ static int ndpi_search_softether_again(struct ndpi_detection_module_struct *ndpi && (flow->protos.softether.port[0] != '\0') && (flow->protos.softether.hostname[0] != '\0') && (flow->protos.softether.fqdn[0] != '\0')) { - flow->check_extra_packets = 0; - flow->max_extra_packets_to_check = 0; flow->extra_packets_func = NULL; return 0; |