[ADD/WIP] Basic XEP-0393 support.

Still needs lots of work. Did I fail to mention I _hate_ HTML?
This commit is contained in:
LDA 2024-06-24 18:26:08 +02:00
commit 771c3271ad
10 changed files with 473 additions and 9 deletions

View file

@ -10,6 +10,7 @@
#include <string.h>
#include <signal.h>
#include <StringStream.h>
#include <Parsee.h>
#include <XMPP.h>
#include <XML.h>
@ -29,6 +30,7 @@ Main(void)
Stream *yaml;
Cron *cron = NULL;
memset(&conf, 0, sizeof(conf));
Log(LOG_INFO,
"%s - v%s (Cytoplasm %s)",
NAME, VERSION, CytoplasmGetVersionStr()
@ -66,7 +68,6 @@ Main(void)
ASRegisterUser(parsee_conf, parsee_conf->sender_localpart);
memset(&conf, 0, sizeof(conf));
conf.port = parsee_conf->port;
conf.threads = 4;
conf.maxConnections = 32;