treebird/src/http.c
nekobit ded0b83151 3rd clause
FossilOrigin-Name: 8766275cac121ced2142c9dee80f2c21a0337e9eb65501961807aba8fca0f252
2022-11-14 15:36:33 +00:00

29 lines
630 B
C

/*
* Treebird - Lightweight frontend for Pleroma
*
* Licensed under the BSD 3-Clause License
*/
#include "http.h"
#define REDIR_HTML_BEGIN "<!DOCTYPE html>" \
"<html>" \
"<head>" \
"<title>Redirecting</title>" \
"</head>" \
"<body>"
#define REDIR_HTML_END "</body>" \
"</html>"
void redirect(REQUEST_T req, char* status, char* location)
{
char* loc_str = location ? location : "/";
PRINTF("Status: %s\r\n"
"Location: %s\r\n\r\n"
REDIR_HTML_BEGIN "Redirecting to <a href=\"\">%s</a>..." REDIR_HTML_END,
status,
loc_str,
loc_str);
}