mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-19 07:43:01 +00:00
TLV warning improvements
This commit is contained in:
parent
46a3ef5002
commit
ddfa56dc50
1 changed files with 2 additions and 2 deletions
|
|
@ -933,7 +933,7 @@ int ZMQParserInterface::parseSingleTLVFlow(ndpi_deserializer *deserializer,
|
|||
key_is_string = true;
|
||||
break;
|
||||
default:
|
||||
ntop->getTrace()->traceEvent(TRACE_WARNING, "Unsupported TLV key type %u\n", kt);
|
||||
ntop->getTrace()->traceEvent(TRACE_WARNING, "Unsupported TLV key type %u: please update both ntopng and the probe to the same version", kt);
|
||||
ret = -1;
|
||||
goto error;
|
||||
}
|
||||
|
|
@ -1152,7 +1152,7 @@ u_int8_t ZMQParserInterface::parseTLVFlow(const char * const payload, int payloa
|
|||
if (!once) {
|
||||
ntop->getTrace()->traceEvent(TRACE_WARNING,
|
||||
"Invalid TLV message: the TLV generated by your probe does not match the version supported "
|
||||
"by ntopng, please update both the probe and ntopng to the latest version available\n");
|
||||
"by ntopng, please update both the probe and ntopng to the latest version available");
|
||||
once = true;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue