summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-03 19:17:12 +0200
committerdefault <nobody@localhost>2022-10-03 19:17:12 +0200
commit5994b4a313ec178e1fe3487712a3d000573dd9e2 (patch)
treebf056251d28734711e4febe3892d1f15ae8d4e9e /main.c
parente285f641b414825709130c3698197df3f068fb4b (diff)
Version 2.01 RELEASED.
Diffstat (limited to 'main.c')
-rw-r--r--main.c83
1 files changed, 1 insertions, 82 deletions
diff --git a/main.c b/main.c
index 39164d1..9cfc007 100644
--- a/main.c
+++ b/main.c
@@ -10,7 +10,7 @@
int usage(void)
{
- printf("snac - A simple, minimalistic ActivityPub instance\n");
+ printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
printf("Copyright (c) 2022 grunfink - MIT license\n");
printf("\n");
printf("Commands:\n");
@@ -229,84 +229,3 @@ int main(int argc, char *argv[])
return 0;
}
-
-
-#if 0
-{
- snac snac;
-
- printf("%s\n", tid(0));
-
- srv_open("/home/angel/lib/snac/comam.es/");
-
- user_open(&snac, "mike");
-
- xs *headers = xs_dict_new();
- int status;
- d_char *payload;
- int p_size;
- xs *response;
-
- response = http_signed_request(&snac, "GET", "https://mastodon.social/users/VictorMoral",
- headers, NULL, 0, &status, &payload, &p_size);
-
- {
- xs *j1 = xs_json_dumps_pp(response, 4);
- printf("response:\n%s\n", j1);
- printf("payload:\n%s\n", payload);
- }
-
- {
- xs *list = queue(&snac);
- char *p, *fn;
-
- p = list;
- while (xs_list_iter(&p, &fn)) {
- xs *obj;
-
- obj = dequeue(&snac, fn);
- printf("%s\n", xs_dict_get(obj, "actor"));
- }
- }
-
-#if 0
- {
- xs *list = follower_list(&snac);
- char *p, *obj;
-
- p = list;
- while (xs_list_iter(&p, &obj)) {
- char *actor = xs_dict_get(obj, "actor");
- printf("%s\n", actor);
- }
- }
-
- {
- xs *list = timeline_list(&snac);
- char *p, *fn;
-
- p = list;
- while (xs_list_iter(&p, &fn)) {
- xs *tle = timeline_get(&snac, fn);
-
- printf("%s\n", xs_dict_get(tle, "id"));
- }
- }
-
- {
- xs *list = user_list();
- char *p, *uid;
-
- p = list;
- while (xs_list_iter(&p, &uid)) {
- if (user_open(&snac, uid)) {
- printf("%s (%s)\n", uid, xs_dict_get(snac.config, "name"));
- user_free(&snac);
- }
- }
- }
-#endif
-
- return 0;
-}
-#endif