[ADD/WIP] Bridge media Matrix->XMPP

We're on that Reverse Ideology phase.
This commit is contained in:
LDA 2024-06-27 20:09:52 +02:00
commit fbf169a080
9 changed files with 118 additions and 6 deletions

View file

@ -19,6 +19,7 @@ typedef struct ParseeConfig {
char *namespace_base;
char *listen_as;
char *media_base;
int port;
/* Homeserver port info */
@ -171,4 +172,6 @@ extern char * ParseeXMPPify(HashMap *event);
/* Finds an event ID from an ID in the stanza's attributes */
extern char * ParseeEventFromID(ParseeData *d, char *c_id, char *ori_id);
extern char * ParseeEventFromSID(ParseeData *d, char *c_id, char *ori_id);
extern char * ParseeToUnauth(ParseeData *data, char *mxc);
#endif