This commit is contained in:
Doug Hoyte
2023-03-03 02:16:57 -05:00
parent fe42b02268
commit a93ad7ff3d
7 changed files with 358 additions and 2 deletions

View File

@ -32,6 +32,10 @@ void RelayServer::run() {
runYesstr(thr);
});
tpXor.init("Xor", cfg().relay__numThreads__xor, [this](auto &thr){
runXor(thr);
});
cronThread = std::thread([this]{
runCron();
});