diff options
author | Campus <campus@ntop.org> | 2016-06-24 13:45:43 +0200 |
---|---|---|
committer | Campus <campus@ntop.org> | 2016-06-24 13:45:43 +0200 |
commit | ff6b19382191941be442349bb55e90c15da818e6 (patch) | |
tree | 884b699750028c5e821a5fe2b27006eee2d7f279 /src | |
parent | 96623c0e4f17c48111fdd8e38d58ebee0c5f26a4 (diff) |
minor fixes - deleted useless part on git and quic protos
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/protocols/bittorrent.c | 9 | ||||
-rw-r--r-- | src/lib/protocols/dropbox.c | 2 | ||||
-rw-r--r-- | src/lib/protocols/git.c | 2 | ||||
-rw-r--r-- | src/lib/protocols/quic.c | 13 | ||||
-rw-r--r-- | src/lib/protocols/tor.c | 2 |
5 files changed, 6 insertions, 22 deletions
diff --git a/src/lib/protocols/bittorrent.c b/src/lib/protocols/bittorrent.c index 6ac9ec69a..0eebe07ee 100644 --- a/src/lib/protocols/bittorrent.c +++ b/src/lib/protocols/bittorrent.c @@ -53,8 +53,7 @@ static u_int8_t is_utp_pkt(const u_int8_t *payload, u_int payload_len) { static void ndpi_add_connection_as_bittorrent(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow, int bt_offset, int check_hash, - const u_int8_t save_detection, const u_int8_t encrypted_connection/* , */ - /* ndpi_protocol_type_t protocol_type */) + const u_int8_t save_detection, const u_int8_t encrypted_connection) { if(check_hash) { const char *bt_hash = NULL; /* 20 bytes long */ @@ -92,8 +91,7 @@ static u_int8_t ndpi_int_search_bittorrent_tcp_zero(struct ndpi_detection_module NDPI_LOG(NDPI_PROTOCOL_BITTORRENT, ndpi_struct, NDPI_LOG_TRACE, "BT: plain BitTorrent protocol detected\n"); ndpi_add_connection_as_bittorrent(ndpi_struct, flow, 19, 1, - NDPI_PROTOCOL_SAFE_DETECTION, NDPI_PROTOCOL_PLAIN_DETECTION/* , */ - /* NDPI_REAL_PROTOCOL */); + NDPI_PROTOCOL_SAFE_DETECTION, NDPI_PROTOCOL_PLAIN_DETECTION); return 1; } } @@ -125,8 +123,7 @@ static u_int8_t ndpi_int_search_bittorrent_tcp_zero(struct ndpi_detection_module NDPI_LOG(NDPI_PROTOCOL_BITTORRENT, ndpi_struct, NDPI_LOG_TRACE, "BT: plain Bitcomet persistent seed protocol detected\n"); ndpi_add_connection_as_bittorrent(ndpi_struct, flow, -1, 1, - NDPI_PROTOCOL_SAFE_DETECTION, NDPI_PROTOCOL_WEBSEED_DETECTION/* , */ - /* NDPI_CORRELATED_PROTOCOL */); + NDPI_PROTOCOL_SAFE_DETECTION, NDPI_PROTOCOL_WEBSEED_DETECTION); return 1; } diff --git a/src/lib/protocols/dropbox.c b/src/lib/protocols/dropbox.c index 3e53b4224..d8babfb1b 100644 --- a/src/lib/protocols/dropbox.c +++ b/src/lib/protocols/dropbox.c @@ -1,7 +1,7 @@ /* * dropbox.c * - * Copyright (C) 2011-13 by ntop.org + * Copyright (C) 2012-16 by ntop.org * * This file is part of nDPI, an open source deep packet inspection * library based on the OpenDPI and PACE technology by ipoque GmbH diff --git a/src/lib/protocols/git.c b/src/lib/protocols/git.c index 63479b26a..8cde52912 100644 --- a/src/lib/protocols/git.c +++ b/src/lib/protocols/git.c @@ -51,7 +51,7 @@ void ndpi_search_git(struct ndpi_detection_module_struct *ndpi_struct, u_int8_t * git_pkt_len_buff = NULL; u_int8_t * git_pkt_data = NULL; - u_int16_t git_len = 0, count = 0 , is_git = 0; + u_int16_t git_len = 0, count = 0; if(packet->tcp != NULL) { diff --git a/src/lib/protocols/quic.c b/src/lib/protocols/quic.c index ac443951b..200f9024b 100644 --- a/src/lib/protocols/quic.c +++ b/src/lib/protocols/quic.c @@ -22,7 +22,6 @@ * */ - #include "ndpi_api.h" #ifdef NDPI_PROTOCOL_QUIC @@ -38,18 +37,6 @@ static int quic_ports(u_int16_t sport, u_int16_t dport) /* ***************************************************************** */ -static int quic_payload(const u_int8_t *payload) { - if((payload[0] == 'Q') - && isdigit(payload[1]) - && isdigit(payload[2]) - && isdigit(payload[3])) - return(1); - - return(0); -} - -/* ***************************************************************** */ - static int quic_len(u_int8_t l) { switch(l) { case 0: diff --git a/src/lib/protocols/tor.c b/src/lib/protocols/tor.c index cb926d5f0..2152da328 100644 --- a/src/lib/protocols/tor.c +++ b/src/lib/protocols/tor.c @@ -1,7 +1,7 @@ /* * tor.c * - * Copyright (C) 2015 ntop.org + * Copyright (C) 2016 ntop.org * Copyright (C) 2013 Remy Mudingay <mudingay@ill.fr> * */ |