diff options
author | MrTiz9 <tiziano.marra@pm.me> | 2020-01-30 14:57:58 +0100 |
---|---|---|
committer | MrTiz9 <tiziano.marra@pm.me> | 2020-01-30 14:57:58 +0100 |
commit | ea957687e1f9444baa69d0b2b041c1b8cf70b2f6 (patch) | |
tree | e478be3b69080c48c7b6b398ee66710efa893a5d /src/lib/protocols/citrix.c | |
parent | daf15e70bf7444649c302840e14142308c731e6c (diff) | |
parent | c84ed5a71257d1db28036c37e90f828ed86623a0 (diff) |
Merge branch 'dev' of https://github.com/ntop/nDPI into dev-unstable
Diffstat (limited to 'src/lib/protocols/citrix.c')
-rw-r--r-- | src/lib/protocols/citrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/citrix.c b/src/lib/protocols/citrix.c index a05d748ca..65852da7f 100644 --- a/src/lib/protocols/citrix.c +++ b/src/lib/protocols/citrix.c @@ -51,7 +51,7 @@ static void ndpi_check_citrix(struct ndpi_detection_module_struct *ndpi_struct, ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_CITRIX, NDPI_PROTOCOL_UNKNOWN); } return; - } else if(payload_len > 4) { + } else if(payload_len > 22) { char citrix_header[] = { 0x1a, 0x43, 0x47, 0x50, 0x2f, 0x30, 0x31 }; if((memcmp(packet->payload, citrix_header, sizeof(citrix_header)) == 0) |