From cbcdc4bf3c435c3557ff492f7d3c850ac9915ec2 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Wed, 15 Apr 2020 15:25:03 +0200 Subject: [PATCH] mxq_group.h: Add blacklist and whitelist Add list of blacklisted and whitelisted servers to group. The string is supposed to be canonical (lexical sorted, space separated) as produced by keywordset_get(), so that groups with equal sets can be found by sql string compare. --- mxq_group.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mxq_group.h b/mxq_group.h index 762b04ae..d8fbd733 100644 --- a/mxq_group.h +++ b/mxq_group.h @@ -14,6 +14,8 @@ struct mxq_group { uint8_t group_status; uint64_t group_flags; uint16_t group_priority; + char * group_blacklist; + char * group_whitelist; uint32_t user_uid; char * user_name;