Change to titles and verification messages

This commit is contained in:
Alex Jarmoszuk 2024-04-12 20:52:49 +02:00
parent 95fd1f989c
commit 3a089d5c94
No known key found for this signature in database
GPG Key ID: 493B4C56E2380C50

View File

@ -36,7 +36,7 @@
"</html>"
#define DEFAULT_TITLE "Verifying your browser..."
#define DEFAULT_TITLE "Browser Verification"
static int is_private_ip(const char *ip) {
struct in_addr addr;
@ -258,7 +258,7 @@ int serve_challenge(ngx_http_request_t *r, const char *challenge, const char *ht
static const ngx_str_t content_type = ngx_string("text/html;charset=utf-8");
if (html == NULL) {
html = "<h2>Please wait...</h2>";
html = "<h2>Your connection is being verified. Please wait...</h2>";
}
size_t size = snprintf((char *) buf, sizeof(buf), JS_SOLVER_TEMPLATE, title_c_str, challenge_c_str, html);