13 lines
397 B
C
13 lines
397 B
C
#ifndef VESSEL_WEB_SRV_H_
|
|
#define VESSEL_WEB_SRV_H_
|
|
|
|
#include "conf.h"
|
|
|
|
#include "request.h"
|
|
|
|
#define VW_SRV_LICENSE "<meta name=\"license\" content=\"AGPL-3.0-or-later\" />"
|
|
|
|
size_t vw_srv_redirect(vw_HTTPRequest *req, uint16_t code, const char *location);
|
|
size_t vw_report_error(vw_HTTPRequest *req, uint16_t code, const char *back_link, const char *extra_info);
|
|
|
|
#endif /* VESSEL_WEB_SRV_H_ */
|