Skip to content
Snippets Groups Projects
Unverified Commit b099b3ce authored by David Bauer's avatar David Bauer Committed by GitHub
Browse files

Merge pull request #2068 from freifunk-gluon/radv-filterd

gluon-radv-filterd: minor cleanup
parents 9be7a5ca e32fa5bc
No related branches found
No related tags found
No related merge requests found
......@@ -559,14 +559,13 @@ static int parse_tt_local(struct nl_msg *msg,
}
static void update_tqs(void) {
static const struct ether_addr unspec = {};
struct router *router;
bool update_originators = false;
struct ether_addr unspec;
struct batadv_nlquery_opts opts;
int ret;
// reset TQs
memset(&unspec, 0, sizeof(unspec));
foreach(router, G.routers) {
router->tq = 0;
if (ether_addr_equal(router->originator, unspec))
......@@ -609,12 +608,12 @@ static void update_tqs(void) {
foreach(router, G.routers) {
if (router->tq == 0) {
if (ether_addr_equal(router->originator, unspec))
fprintf(stderr,
"Unable to find router " F_MAC " in transtable_{global,local}\n",
DEBUG_MSG(
"Unable to find router " F_MAC " in transtable_{global,local}",
F_MAC_VAR(router->src));
else
fprintf(stderr,
"Unable to find TQ for originator " F_MAC " (router " F_MAC ")\n",
DEBUG_MSG(
"Unable to find TQ for originator " F_MAC " (router " F_MAC ")",
F_MAC_VAR(router->originator),
F_MAC_VAR(router->src));
}
......
#pragma once
#include <stdint.h>
#include <string.h>
#include <linux/if_ether.h>
#define F_MAC "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment