Message ID | 20201008135024.1515468-4-razor@blackwall.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | bridge: mdb: add support for IGMPv3/MLDv2 attributes | expand |
diff --git a/bridge/mdb.c b/bridge/mdb.c index 94cd3c3b2390..d33bd5d5c7df 100644 --- a/bridge/mdb.c +++ b/bridge/mdb.c @@ -155,6 +155,10 @@ static void print_mdb_entry(FILE *f, int ifindex, const struct br_mdb_entry *e, print_string(PRINT_ANY, NULL, " %s", "offload"); if (e->flags & MDB_FLAGS_FAST_LEAVE) print_string(PRINT_ANY, NULL, " %s", "fast_leave"); + if (e->flags & MDB_FLAGS_STAR_EXCL) + print_string(PRINT_ANY, NULL, " %s", "added_by_star_ex"); + if (e->flags & MDB_FLAGS_BLOCKED) + print_string(PRINT_ANY, NULL, " %s", "blocked"); close_json_array(PRINT_JSON, NULL); if (e->vid)