1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Initial allowlist support

This commit is contained in:
mkaruza
2021-11-08 15:01:06 +01:00
parent 8f59e7b30b
commit 14b3612a30
7 changed files with 266 additions and 1 deletions

View File

@ -46,6 +46,7 @@ namespace wsrep
class high_priority_service;
class thread_service;
class tls_service;
class allowlist_service;
class stid
{
@ -422,9 +423,11 @@ namespace wsrep
{
wsrep::thread_service* thread_service;
wsrep::tls_service* tls_service;
wsrep::allowlist_service* allowlist_service;
services()
: thread_service()
, tls_service()
, allowlist_service()
{
}
};