2023-05-29 21:46:05 +02:00
|
|
|
#ifndef LANDER
|
|
|
|
#define LANDER
|
|
|
|
|
|
|
|
#include "http_loop.h"
|
|
|
|
|
2023-05-30 10:17:46 +02:00
|
|
|
extern http_route lander_routes[4];
|
2023-05-29 23:26:15 +02:00
|
|
|
|
2023-10-30 21:14:06 +01:00
|
|
|
typedef struct lander_gctx {
|
|
|
|
const char *data_dir;
|
|
|
|
Trie *trie;
|
|
|
|
} lander_gctx;
|
|
|
|
|
|
|
|
typedef struct lander_ctx {
|
|
|
|
char *key;
|
|
|
|
} lander_ctx;
|
|
|
|
|
|
|
|
void *lander_gctx_init();
|
|
|
|
|
|
|
|
void *lander_ctx_init();
|
|
|
|
|
|
|
|
void lander_ctx_reset(lander_ctx *ctx);
|
|
|
|
|
|
|
|
void lander_ctx_free(lander_ctx *ctx);
|
|
|
|
|
2023-05-30 09:37:40 +02:00
|
|
|
bool lander_get_index(event_loop_conn *conn);
|
|
|
|
|
|
|
|
bool lander_get_entry(event_loop_conn *conn);
|
|
|
|
|
2023-05-29 23:26:15 +02:00
|
|
|
bool lander_post_redirect(event_loop_conn *conn);
|
2023-05-29 21:46:05 +02:00
|
|
|
|
2023-05-30 10:17:46 +02:00
|
|
|
bool lander_post_paste(event_loop_conn *conn);
|
|
|
|
|
2023-05-29 21:46:05 +02:00
|
|
|
#endif
|