diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-05-04 19:11:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 19:11:31 +0200 |
commit | a6fd981fcf40a8cff5a6dd7c1af57e50053186b6 (patch) | |
tree | a7ceeff55e429394a9618c5dbb4fb4463e76e796 /src/include | |
parent | 57ecbf38c04d4522a534c47846e46c7e8c932eac (diff) |
eDonkey: improve/update classification (#2410)
eDonkey is definitely not as used as >10 years ago, but it seems it is
still active.
While having a basic TCP support seems easy, identification over UDP doesn't
work and it is hard to do it rightly (packets might be only 2 bytes long):
remove it.
Credits to V.G <v.gavrilov@securitycode.ru>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_typedefs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index f5e6ac803..9b5e294da 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1469,9 +1469,6 @@ struct ndpi_flow_struct { /* NDPI_PROTOCOL_SOCKS */ u_int8_t socks5_stage:2, socks4_stage:2; // 0 - 3 - /* NDPI_PROTOCOL_EDONKEY */ - u_int8_t edonkey_stage:2; // 0 - 3 - /* NDPI_PROTOCOL_FTP_CONTROL */ u_int8_t ftp_control_stage:2; |