From 2d5e470d5b12d783da3d5a92a61aa8bf2d0744ff Mon Sep 17 00:00:00 2001 From: Lorenzo Perlo <68781644+TIT8@users.noreply.github.com> Date: Sun, 12 Nov 2023 13:07:56 +0100 Subject: [PATCH] Update form-api.go --- form-api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/form-api.go b/form-api.go index 77565b8..6df499c 100644 --- a/form-api.go +++ b/form-api.go @@ -71,7 +71,7 @@ func handler_get(w http.ResponseWriter, r *http.Request) { r.Body = http.MaxBytesReader(w, r.Body, 100) - fmt.Fprintf(w, "Ciao da %s\nIP address: %s \t %s", r.Host, r.RemoteAddr, r.Header.Get("X-Forwarded-For")) + fmt.Fprintf(w, "Ciao da %s\nList of IP addresses received (yours and various proxies):\n%s, %s", r.Host, r.RemoteAddr, r.Header.Get("X-Forwarded-For")) }