aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols
diff options
context:
space:
mode:
authorStuart Reilly <rs576h@vyatta.att-mail.com>2019-07-12 16:41:39 +0100
committerStuart Reilly <rs576h@vyatta.att-mail.com>2019-07-12 16:41:39 +0100
commit92c769f206d407024cec677b838e67e64769249e (patch)
tree7db608368f85f72638498d709aa6a55bd2ce5145 /src/lib/protocols
parent343ee0c9b6f5421f5a7b2e17429bcd52c6fa6950 (diff)
Solve remaining warnings
Diffstat (limited to 'src/lib/protocols')
-rw-r--r--src/lib/protocols/http.c1
-rw-r--r--src/lib/protocols/openvpn.c7
-rw-r--r--src/lib/protocols/ssl.c3
-rw-r--r--src/lib/protocols/stun.c2
4 files changed, 2 insertions, 11 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index 1f5b88c7a..51ec9ded8 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -123,7 +123,6 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_
struct ndpi_flow_struct *flow) {
struct ndpi_packet_struct *packet = &flow->packet;
- u_int8_t a;
if((!ndpi_struct->http_dont_dissect_response) && flow->http_detected && (flow->http.response_status_code != 0)) {
ndpi_set_detected_protocol(ndpi_struct, flow, flow->http_upper_protocol, flow->http_lower_protocol);
diff --git a/src/lib/protocols/openvpn.c b/src/lib/protocols/openvpn.c
index b92eb5cf7..6c08bba5a 100644
--- a/src/lib/protocols/openvpn.c
+++ b/src/lib/protocols/openvpn.c
@@ -40,13 +40,6 @@
#define P_PACKET_ID_ARRAY_LEN_OFFSET(hmac_size) (P_HARD_RESET_PACKET_ID_OFFSET(hmac_size) + 8)
#define P_HARD_RESET_CLIENT_MAX_COUNT 5
-static void ndpi_int_openvpn_add_connection(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow) {
- NDPI_LOG_INFO(ndpi_struct, "found memcached\n");
- ndpi_set_detected_protocol(ndpi_struct, flow,
- NDPI_PROTOCOL_MEMCACHED, NDPI_PROTOCOL_UNKNOWN);
-}
-
static
#ifndef WIN32
inline
diff --git a/src/lib/protocols/ssl.c b/src/lib/protocols/ssl.c
index 29b22ac11..18e8ca469 100644
--- a/src/lib/protocols/ssl.c
+++ b/src/lib/protocols/ssl.c
@@ -633,7 +633,7 @@ int getSSLcertificate(struct ndpi_detection_module_struct *ndpi_struct,
/* Move to the first extension
Type is u_int to avoid possible overflow on extension_len addition */
u_int extension_offset = 0;
- u_int32_t md5h[4], j;
+ u_int32_t j;
while(extension_offset < extensions_len) {
u_int16_t extension_id, extension_len, extn_off = offset+extension_offset;
@@ -833,7 +833,6 @@ void getSSLorganization(struct ndpi_detection_module_struct *ndpi_struct,
for(i = 9; i < packet->payload_packet_len-4; i++) {
/* Organization OID: 2.5.4.10 */
if((packet->payload[i] == 0x55) && (packet->payload[i+1] == 0x04) && (packet->payload[i+2] == 0x0a)) {
- u_int8_t type_tag = packet->payload[i+3]; // 0x0c: utf8string / 0x13: printable_string
u_int8_t server_len = packet->payload[i+4];
num_found++;
diff --git a/src/lib/protocols/stun.c b/src/lib/protocols/stun.c
index 3e2e037f2..500251a25 100644
--- a/src/lib/protocols/stun.c
+++ b/src/lib/protocols/stun.c
@@ -53,7 +53,7 @@ static ndpi_int_stun_t ndpi_int_check_stun(struct ndpi_detection_module_struct *
u_int8_t *is_whatsapp) {
u_int16_t msg_type, msg_len;
struct stun_packet_header *h = (struct stun_packet_header*)payload;
- u_int8_t can_this_be_whatsapp_voice = 1, wa = 0;
+ u_int8_t can_this_be_whatsapp_voice = 1;
flow->protos.stun_ssl.stun.num_processed_pkts++;