snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 765f63772f5a63c6c7c97c06b265f5bba06966df
parent b620fe99fa99bb1658f43741b2d40ce88ff53963
Author: default <nobody@localhost>
Date:   Fri, 28 Apr 2023 08:33:02 +0200

New function mastoapi_purge() (still dummy).

Diffstat:
Mdata.c | 4++++
Mmastoapi.c | 5+++++
Msnac.h | 1+
3 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/data.c b/data.c @@ -2078,6 +2078,10 @@ void purge_all(void) } purge_server(); + +#ifndef NO_MASTODON_API + mastoapi_purge(); +#endif } diff --git a/mastoapi.c b/mastoapi.c @@ -1961,4 +1961,9 @@ int mastoapi_put_handler(const xs_dict *req, const char *q_path, } +void mastoapi_purge(void) +{ +} + + #endif /* #ifndef NO_MASTODON_API */ diff --git a/snac.h b/snac.h @@ -253,3 +253,4 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path, int mastoapi_put_handler(const xs_dict *req, const char *q_path, const char *payload, int p_size, char **body, int *b_size, char **ctype); +void mastoapi_purge(void);