Explorar el Código

New function mastoapi_purge() (still dummy).

default hace 3 años
padre
commit
765f63772f
Se han modificado 3 ficheros con 10 adiciones y 0 borrados
  1. 4 0
      data.c
  2. 5 0
      mastoapi.c
  3. 1 0
      snac.h

+ 4 - 0
data.c

@@ -2078,6 +2078,10 @@ void purge_all(void)
     }
 
     purge_server();
+
+#ifndef NO_MASTODON_API
+    mastoapi_purge();
+#endif
 }
 
 

+ 5 - 0
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 */

+ 1 - 0
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);