|
From: Николай К. <per...@gm...> - 2015-09-23 13:51:08
|
Hi.
nfdump-1.6.13
In bin/netflow_v9.c, inside loop for ( ; i<(nr_scopes+nr_options); i++ ):
if ( !index ) {
dbg_printf("Unsupported: Option field Type: %u, length %u\n", type, length);
continue;
}
Here should be offset += Length before continue, i think.
The same in
if ( index && v9_element_map[index].length != length ) {
syslog(LOG_ERR,"Process_v9: Option field Type: %u, length %u not
supported\n", type, length);
dbg_printf("Process_v9: Option field Type: %u, length %u not
supported\n", type, length);
continue;
}
|