-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetclient.cpp
732 lines (635 loc) · 21.4 KB
/
netclient.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
#include <unistd.h>
#include <chrono>
#include <future>
#include <memory>
#include "netclient.h"
#include "httplib.h"
#include "base64m.h"
#include "codec.h"
#include "lfs.h"
#include "md5calc.h"
#ifndef NDEBUG
#define DBG(...) do { fprintf(stderr,"[DBG] " __VA_ARGS__); fflush(stderr); } while (0)
#else
#define DBG(...)
#endif
using namespace std;
using namespace httplib;
AnnaClient::AnnaClient(AnnaConfig* cfg, string server, bool mk_dummy, waitfunction wait_cb) :
AnnaBrain(nullptr),
create_dummy(mk_dummy),
wait_callback(wait_cb)
{
DBG("client c'tor\n");
state = ANNA_NOT_INITIALIZED;
if (!cfg) return;
// create a client ID for ourselves
clid = make_clid();
DBG("clid = %u (0x%08X)\n",clid,clid);
// create HTTP client
client = new Client(server);
if (!client->is_valid()) {
state = ANNA_ERROR;
internal_error = myformat("Server '%s' is not valid",server.c_str());
return;
}
client->set_read_timeout(ANNA_CLIENT_TIMEOUT,0);
client->set_write_timeout(ANNA_CLIENT_TIMEOUT,0);
client->set_connection_timeout(ANNA_CLIENT_TIMEOUT,0);
// set internal data
config = *cfg;
state = ANNA_READY;
fixConfig(); // this changes internal config
if (state == ANNA_ERROR) return;
// begin the session
if (request(true,"/sessionStart",ANNA_CLIENT_VERSION).empty()) {
state = ANNA_ERROR;
internal_error = "Unable to create remote session!";
return;
}
startKeepAlives(true);
// request model file presence and upload the file if necessary
string mrq = request(false,"/checkModel",config.params.model);
DBG("Model request: %s\n",mrq.c_str());
// TODO: check file size and show a warning
if (mrq.substr(0,2) != "OK") {
DBG("Uploading model file %s...\n",cfg->params.model);
if (!UploadModel(cfg->params.model,config.params.model)) {
state = ANNA_ERROR;
return;
}
DBG(" upload done\n");
}
// finally we can attempt to upload the config
AnnaClient::setConfig(config);
}
AnnaClient::~AnnaClient()
{
DBG("client d'tor\n");
startKeepAlives(false);
request(true,"/sessionEnd"," ","",true);
}
AnnaState AnnaClient::getState()
{
if (state == ANNA_ERROR) return state; // internal error has already occured
int r = atoi(request(false,"/getState").c_str());
if (state == ANNA_ERROR) return state; // request failed
return (r < 0 || r >= ANNA_NUM_STATES)? ANNA_ERROR : (AnnaState)r;
}
const string &AnnaClient::getError()
{
// in non-ready state, we don't want to call the remote
if (state != ANNA_READY) return internal_error;
// check remote error first
string err = fromBase64(request(false,"/getError"));
// we might or might not have a remote error, but we also might have an internal error
if (!err.empty()) internal_error = err;
return internal_error;
}
int AnnaClient::getTokensUsed()
{
return atoi(request(false,"/getTokensUsed").c_str());
}
AnnaConfig AnnaClient::getConfig()
{
string r = request(false,"/getConfig");
if (r.empty()) return config; // return internal config (server busy?)
AnnaConfig cfg;
size_t n = fromBase64(&cfg,sizeof(cfg),r);
if (n != sizeof(cfg)) {
state = ANNA_ERROR;
internal_error = "Failed to read encoded config";
} else
config = cfg;
return config;
}
void AnnaClient::setConfig(const AnnaConfig &cfg)
{
DBG("sizeof AnnaConfig = %zu\n",sizeof(AnnaConfig));
config = cfg;
fixConfig();
// infill large strings
codec_infill_str(config.params.model,sizeof(config.params.model));
codec_infill_str(config.params.prompt,sizeof(config.params.prompt));
// encode and send
string enc = asBase64((void*)&(config),sizeof(config));
DBG("encoded state len = %zu\n",enc.size());
request(true,"/setConfig",enc);
}
string AnnaClient::getOutput()
{
return fromBase64(request(false,"/getOutput"));
}
void AnnaClient::setInput(string inp)
{
request(true,"/setInput",asBase64(inp));
}
void AnnaClient::setPrefix(string str)
{
request(true,"/setPrefix",asBase64(str));
}
void AnnaClient::addEmbeddings(const std::vector<float>& emb)
{
string enc = asBase64(emb.data(),emb.size()*sizeof(float));
DBG("encoded embedding len = %zu\n",enc.size());
request(true,"/addEmbeddings",enc);
}
void AnnaClient::applyLogitBias(llama_sample_bias bias)
{
char buf[ANNA_MAXLEN_BIAS_STR] = {0};
snprintf(buf,ANNA_MAXLEN_BIAS_STR-1,"%d %d %lf",bias.tok,bias.op,bias.val);
DBG("applyLogitBias(): sending '%s'\n",buf);
request(true,"/applyLogitBias",asBase64(buf,strlen(buf)));
}
const char* AnnaClient::TokenToStr(llama_token token)
{
piecebuf = fromBase64(request(false,"/TokenToStr",asBase64(&token,sizeof(token))));
return piecebuf.c_str();
}
list<string> AnnaClient::getDictionary()
{
list<string> res;
string buf = fromBase64(request(false,"/getDictionary"));
while (!buf.empty()) {
size_t n = buf.find('\n');
if (n < buf.length()) {
res.push_back(buf.substr(n));
buf.erase(0,n+1);
} else break;
}
return res;
}
string AnnaClient::PrintContext()
{
return request(false,"/printContext");
}
vector<llama_token> AnnaClient::getContext()
{
string buf = fromBase64(request(false,"/getContext"));
return vector_storage<llama_token>::from_pool((uint8_t*)buf.data(),buf.length());
}
vector<float> AnnaClient::getContextLogits()
{
string buf = fromBase64(request(false,"/getContextLogits"));
return vector_storage<float>::from_pool((uint8_t*)buf.data(),buf.length());
}
vector<llama_sample_bias> AnnaClient::getLogitBiases()
{
vector<llama_sample_bias> res;
string buf = fromBase64(request(false,"/getLogitBiases"));
while (!buf.empty()) {
size_t n = buf.find('\n');
if (n < buf.length()) {
string tmp = buf.substr(n);
buf.erase(0,n+1);
llama_sample_bias b;
if (sscanf(tmp.c_str(),"%d %d %lf",&b.tok,&b.op,&b.val) == 3)
res.push_back(b);
else {
internal_error = myformat("Unable to parse bias string '%s'",tmp.c_str());
break;
}
} else break;
}
return res;
}
bool AnnaClient::SaveState(string fname, const void* user_data, size_t user_size)
{
// open new file
FILE* f = fopen(fname.c_str(),"w+b");
if (!f) {
internal_error = myformat("Unable to open file '%s' for writing",fname.c_str());
return false;
}
// start requesting the state info
string dwq = request(false,"/downloadState");
if (dwq.substr(0,2) != "OK") {
internal_error = "Error requesting state data: " + dwq;
return false;
}
// get the size
dwq.erase(0,2);
size_t sz = atoll(dwq.c_str());
if (!sz) {
internal_error = "Zero size received";
return false;
}
// try to transfer the body
DBG("Downloading started...");
bool r = downloadFile(f,sz);
DBG("Download complete\n");
// close the transfer on the server side
request(true,"/endTransfer");
if (wait_callback) wait_callback(-1,false,"");
// check the result and attempt to append the user data if needed
if (r && user_data && user_size) {
// retrieve the header
size_t left = mtell(f);
mseek(f,0,SEEK_SET);
AnnaSave hdr;
if (!fread(&hdr,sizeof(hdr),1,f)) {
internal_error = "Couldn't read the header from the state file";
fclose(f);
return false;
}
// edit and replace the header
string tmp = hdr.cfg.params.model;
while (tmp.find('/') != string::npos) tmp.erase(0,tmp.find('/')+1); // remove any path
memset(hdr.cfg.params.model,0,sizeof(hdr.cfg.params.model));
memcpy(hdr.cfg.params.model,tmp.c_str(),tmp.length());
hdr.user_size = user_size;
mseek(f,0,SEEK_SET);
if (!fwrite(&hdr,sizeof(hdr),1,f)) {
internal_error = "Couldn't overwrite the header in the state file";
fclose(f);
return false;
}
// write the user data at the end
mseek(f,left,SEEK_SET);
if (!fwrite(user_data,user_size,1,f)) {
internal_error = "Couldn't append user data to the state file";
fclose(f);
return false;
}
}
fclose(f);
return r;
}
bool AnnaClient::LoadState(string fname, void* user_data, size_t* user_size)
{
FILE* f = fopen(fname.c_str(),"rb");
if (!f) {
internal_error = myformat("Unable to open file '%s' for reading",fname.c_str());
return false;
}
// read the header and extract user data
//FIXME: replace model file in the header with its hash?
AnnaSave hdr;
if (!fread(&hdr,sizeof(hdr),1,f)) {
internal_error = "Couldn't read the header from the state file";
fclose(f);
return false;
}
if (user_data && user_size) {
// check the size requirements
if (hdr.user_size > (*user_size)) {
internal_error = myformat("Not enough space for the user data buffer: %zu in file, %zu given",hdr.user_size,*user_size);
fclose(f);
return false;
}
// jump to the start of user data and read it
size_t off = sizeof(hdr) + hdr.data_size + hdr.vector_size;
DBG("Offset calculated: %zu\n",off);
fseek(f,off,SEEK_SET);
if (!fread(user_data,hdr.user_size,1,f)) {
internal_error = "Can't read user data from the state file.";
fclose(f);
return false;
}
*user_size = hdr.user_size;
}
// get file size
mseek(f,0,SEEK_END);
size_t sz = mtell(f);
mseek(f,0,SEEK_SET);
// try to negotiate uploading
string urq = request(false,"/uploadState",myformat("%zu",sz));
if (urq != "OK") {
fclose(f);
internal_error = "uploadState request failed: " + urq;
return false;
}
// do the actual transfer
DBG("State upload started... ");
bool r = uploadFile(f,sz);
DBG("Finished uploading state\n");
// finalize transfer
request(true,"/endTransfer");
if (wait_callback) wait_callback(-1,false,"");
fclose(f);
return r;
}
bool AnnaClient::UploadModel(string fpath, string mname)
{
FILE* f = fopen(fpath.c_str(),"rb");
if (!f) {
internal_error = myformat("Unable to open file '%s' for reading",fpath.c_str());
return false;
}
// get size
mseek(f,0,SEEK_END);
size_t sz = mtell(f);
mseek(f,0,SEEK_SET);
// try to negotiate uploading
string urq = request(false,"/uploadModel",myformat("%zu",sz),mname);
if (urq != "OK") {
fclose(f);
internal_error = "uploadModel request failed: " + urq;
return false;
}
// do the actual transfer
DBG("Model upload started... ");
bool r = uploadFile(f,sz);
DBG("Finished uploading model\n");
// finalize transfer
request(true,"/endTransfer");
if (wait_callback) wait_callback(-1,false,"");
fclose(f);
return r;
}
bool AnnaClient::EmbedImage(std::string imgfile)
{
// being previously updated on the server, the config might have different amount of threads specified
if (config.params.n_threads > (int)thread::hardware_concurrency())
config.params.n_threads = thread::hardware_concurrency();
// now we can use EmbedImage as usual
return AnnaBrain::EmbedImage(imgfile);
}
AnnaState AnnaClient::Processing(bool skip_sampling)
{
int r = atoi(request(false,"/processing",skip_sampling? "skip":"noskip").c_str());
return (r < 0 || r >= ANNA_NUM_STATES)? ANNA_ERROR : (AnnaState)r;
}
void AnnaClient::Reset()
{
request(true,"/reset");
}
void AnnaClient::Undo()
{
request(true,"/undo");
}
void AnnaClient::KeepAlive()
{
request(true,"/keepAlive");
}
void AnnaClient::fixConfig()
{
// replace LLM file name with its hash
string fn = config.params.model;
string tmp = fn;
transform(tmp.begin(),tmp.end(),tmp.begin(),[](char c) { return ::toupper(c); });
if (fn.length() == MD5_DIGEST_STR && tmp.find(".GGUF") == string::npos) return; // already replaced
string hash = hashFile(fn);
if (hash.empty()) {
state = ANNA_ERROR;
internal_error = myformat("Unable to calculate hash for file '%s'",fn.c_str());
return;
}
strncpy(config.params.model,hash.c_str(),sizeof(config.params.model)-1);
}
string AnnaClient::asBase64(const void *data, size_t len)
{
uint8_t* tmp = (uint8_t*)malloc(len);
if (!tmp) {
state = ANNA_ERROR;
internal_error = myformat("Unable to allocate %zu bytes of memory!\n",len);
return "";
}
memcpy(tmp,data,len);
codec_forward(clid,tmp,len);
string s;
s.resize(len*2+1);
size_t n = encode((char*)s.data(),s.size(),tmp,len);
s.resize(n);
free(tmp);
return s;
}
string AnnaClient::asBase64(const string& in)
{
return asBase64(in.data(),in.size());
}
string AnnaClient::fromBase64(const string& in)
{
string s;
s.resize(in.size());
size_t n = fromBase64((char*)s.data(),s.size(),in);
s.resize(n);
return s;
}
size_t AnnaClient::fromBase64(void *data, size_t len, string in)
{
size_t n = decode(data,len,in.c_str());
codec_backward(clid,data,n);
DBG("%zu bytes decoded from %zu bytes string\n",n,strlen(in.c_str()));
return n;
}
string AnnaClient::request(bool post, const string cmd, const string arg, const string mod, bool force)
{
if (!force && state != ANNA_READY) return "";
// format the command/request URL and add modification part if needed
string fcmd = cmd + myformat("/%d",clid);
if (!mod.empty()) fcmd += "/" + mod;
// create an async object to offload the actual Get/Post, allowing the main thread to continue its stuff
auto rhnd = async(launch::async,[&]() -> auto {
if (post) {
DBG("post: %s\n",fcmd.c_str());
return client->Post(fcmd,arg,"text/plain");
} else {
Params p;
if (!arg.empty()) {
p.insert(pair<string,string>("arg",arg));
DBG("argument '%s' added\n",arg.c_str());
}
DBG("get: %s\n",fcmd.c_str());
return client->Get(fcmd,p,Headers(),Progress());
}
});
// use wait function while async object is busy
bool dowait = true;
while (rhnd.wait_for(ANNA_REQUEST_CHECK) != future_status::ready) {
// don't fire up wait function again if it was rejected once (another thread is already using it)
if (wait_callback && dowait)
dowait = wait_callback(0,true,"Waiting for server response...");
}
if (wait_callback && dowait) wait_callback(-1,false,"");
// finally we can acquire the request result
Result r = rhnd.get();
if (!r) {
state = ANNA_ERROR;
internal_error = myformat("Remote request failed: %s",fcmd.c_str());
return "";
}
// response status handling - OK, RETRY or FAIL
DBG("status = %d\n",r->status);
switch (r->status) {
case OK_200:
//if (wait_callback) wait_callback(-1,false,"");
return post? "OK" : r->body;
case ServiceUnavailable_503:
DBG("Temporarily unavailable, retrying...\n");
if (wait_callback) wait_callback(0,true,"Server is busy. Waiting in the queue...");
else sleep(1);
return request(post,cmd,arg,mod,force); // tail recursion
default:
state = ANNA_ERROR;
//if (wait_callback) wait_callback(-1,false,"");
internal_error = myformat("Remote rejected request %s: %d",fcmd.c_str(),r->status);
if (r->status == ImATeapot_418) internal_error += " " + r->body;
return "";
}
}
bool AnnaClient::uploadFile(FILE* f, size_t sz)
{
uint8_t* buf = (uint8_t*)malloc(ANNA_CLIENT_CHUNK);
if (!buf) {
internal_error = "Unable to allocate buffer in uploadFile()";
return false;
}
// temporarily substitute the waiting function to prevent generating "end-of-progress" events from request(true,...)
waitfunction wcb = wait_callback;
wait_callback = nullptr;
// do the transfer chunk by chunk
size_t i = 0;
while (!feof(f)) {
// read the data
size_t r = ANNA_CLIENT_CHUNK;
size_t p = mtell(f);
if (!fread(buf,ANNA_CLIENT_CHUNK,1,f)) { // try bufferized read
mseek(f,p,SEEK_SET);
r = fread(buf,1,ANNA_CLIENT_CHUNK,f); // try partial read
if (!r) break;
}
// make it appear responsive
float prg = (float)i / (float)(sz / ANNA_CLIENT_CHUNK) * 100.f;
if (wcb) wcb(ceil(prg),false,"Uploading file...");
// encode and send
string enc = asBase64(buf,r);
bool flag = false;
AnnaState oldst = state;
for (int retry = 0; !flag && retry < ANNA_TRANSFER_RETRIES; retry++) {
if (!request(true,"/setChunk",enc,myformat("%zu",i),true).empty()) // force request
flag = true;
else {
state = oldst; // we know we'll be in ERROR state due to failed transfer, so restore what we knew before
if (wcb) wcb(ceil(prg),true,myformat("Retrying upload %d/%d...",retry+1,ANNA_TRANSFER_RETRIES));
else usleep(1000UL * ANNA_RETRY_WAIT_MS);
}
}
if (!flag) {
free(buf);
wait_callback = wcb;
return false;
}
i++;
}
free(buf);
wait_callback = wcb;
return true;
}
bool AnnaClient::downloadFile(FILE* f, size_t sz)
{
uint8_t* buf = (uint8_t*)malloc(ANNA_CLIENT_CHUNK);
if (!buf) {
internal_error = "Unable to allocate buffer in downloadFile()";
return false;
}
// temporarily substitute the waiting function to prevent generating "end-of-progress" events from request(true,...)
waitfunction wcb = wait_callback;
wait_callback = nullptr;
internal_error.clear();
// retrieve the file chunk by chunk
size_t rd = 0, n = 0;
while (rd < sz) {
// make it appear responsive
float prg = (float)n / (float)(sz / ANNA_CLIENT_CHUNK) * 100.f;
if (wcb) wcb(ceil(prg),false,"Downloading file...");
// attempt to receive
string dat;
bool flag = false;
AnnaState oldst = state;
for (int retry = 0; !flag && retry < ANNA_TRANSFER_RETRIES; retry++) {
dat = request(false,"/getChunk","",myformat("%zu",n));
if (dat.empty()) {
state = oldst; // we know we'll be in ERROR state due to failed transfer, so restore what we knew before
if (wcb) wcb(ceil(prg),true,myformat("Retrying download %d/%d...",retry+1,ANNA_TRANSFER_RETRIES));
else usleep(1000UL * ANNA_RETRY_WAIT_MS);
} else
flag = true;
}
if (!flag) {
internal_error = myformat("Error retrieving chunk %zu",n);
break;
}
// attempt to decode
size_t cv = fromBase64(buf,ANNA_CLIENT_CHUNK,dat);
if (!cv) {
internal_error = myformat("Error decoding chunk %zu of %zu bytes",n,dat.size());
break;
}
// finally write it down
if (!fwrite(buf,cv,1,f)) {
internal_error = myformat("Error writing to file at offset %zu",mtell(f));
break;
}
n++;
rd += cv;
}
free(buf);
wait_callback = wcb;
return internal_error.empty();
}
string AnnaClient::hashFile(const std::string fn)
{
string res;
FILE* f = fopen(fn.c_str(),"rb");
if (!f) {
internal_error = myformat("Unable to open file %s",fn.c_str());
return "";
}
// get size
mseek(f,0,SEEK_END);
size_t sz = mtell(f);
mseek(f,0,SEEK_SET);
// check if it's a dummy file (sz == sizeof(hash string))
if (sz == MD5_DIGEST_STR) {
res.resize(MD5_DIGEST_STR);
size_t r = fread((void*)res.data(),MD5_DIGEST_STR,1,f);
fclose(f);
if (r) return res;
else {
internal_error = myformat("Unable to read from file %s",fn.c_str());
return "";
}
}
// otherwise get its hash
auto lp = chrono::steady_clock::now();
res = md5FileToStr(f,[&](size_t rb) {
int ms = (chrono::steady_clock::now() - lp) / 1ms;
if (wait_callback && ms > ANNA_HASH_UPDATE_MS) {
lp = chrono::steady_clock::now();
wait_callback(floor((double)rb / (double)sz * 100.f),false,"Calculating hash...");
}
});
if (wait_callback) wait_callback(-1,false,"");
fclose(f);
// if we want to save dummy files, let's do it
if (create_dummy) {
string nfn = fn + ".dummy";
f = fopen(nfn.c_str(),"wb");
if (f) {
fwrite(res.c_str(),res.length(),1,f);
fclose(f);
} else
internal_error = myformat("Unable to write to file %s",nfn.c_str());
}
return res;
}
void AnnaClient::startKeepAlives(bool start)
{
if (start == keepalive_started) return;
keepalive_started = start;
if (start) {
keepalive_thr = thread([this] {
while (keepalive_started) {
KeepAlive();
for (int i = 0; i < ANNA_KEEPALIVE_PERIOD && keepalive_started; i++)
usleep(1000UL * ANNA_KEEPALIVE_CHECK_MS);
}
});
DBG("Keepalive thread started\n");
} else {
DBG("Joining keepalive thread...\n");
keepalive_thr.join();
DBG("Keepalive thread joined\n");
}
}