diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-22 23:34:11 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-22 23:34:11 +0200 |
commit | 5f914a980ce398be8c28708b6910944e2beb74c1 (patch) | |
tree | 2a1b3c58448c73070a21ef6704151fcb796b4531 /src/backend/taler-merchant-httpd_spa.h | |
parent | 873f0ac8448a7f4d2efaef4e9ab9840e90a3b867 (diff) |
integrate SPA
Diffstat (limited to 'src/backend/taler-merchant-httpd_spa.h')
-rw-r--r-- | src/backend/taler-merchant-httpd_spa.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/backend/taler-merchant-httpd_spa.h b/src/backend/taler-merchant-httpd_spa.h new file mode 100644 index 00000000..8a998c38 --- /dev/null +++ b/src/backend/taler-merchant-httpd_spa.h @@ -0,0 +1,47 @@ +/* + This file is part of TALER + Copyright (C) 2021 Taler Systems SA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> +*/ +/** + * @file taler-merchant-httpd_spa.h + * @brief logic to preload and serve static files + * @author Christian Grothoff + */ +#ifndef TALER_MERCHANT_HTTPD_SPA_H +#define TALER_MERCHANT_HTTPD_SPA_H + +#include <microhttpd.h> +#include "taler-merchant-httpd.h" + +/** + * Return our single-page-app user interface (see contrib/spa.html). + * + * @param rh request handler + * @param connection the connection we act upon + * @param hc handler context + * @return #MHD_YES on success (reply queued), #MHD_NO on error (close connection) + */ +MHD_RESULT +TMH_return_spa (const struct TMH_RequestHandler *rh, + struct MHD_Connection *connection, + struct TMH_HandlerContext *hc); + +/** + * Preload and compress SPA file. + */ +int +TMH_spa_init (void); + + +#endif |