mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Fix a reporting message that was meant to be compile-conditional.
This commit is contained in:
@@ -271,7 +271,9 @@ static __always_inline void process_tcp(
|
|||||||
struct flow_data_t *data = bpf_map_lookup_elem(&flowbee, &key);
|
struct flow_data_t *data = bpf_map_lookup_elem(&flowbee, &key);
|
||||||
if (data == NULL) {
|
if (data == NULL) {
|
||||||
// If it isn't a flow we're tracking, bail out now
|
// If it isn't a flow we're tracking, bail out now
|
||||||
|
#ifdef VERBOSE
|
||||||
bpf_debug("Bailing");
|
bpf_debug("Bailing");
|
||||||
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user