aboutsummaryrefslogtreecommitdiffstats
path: root/icanhazallips.go
diff options
context:
space:
mode:
Diffstat (limited to 'icanhazallips.go')
-rw-r--r--icanhazallips.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/icanhazallips.go b/icanhazallips.go
index 218063c..68a2f82 100644
--- a/icanhazallips.go
+++ b/icanhazallips.go
@@ -3,6 +3,7 @@ package main
import (
"errors"
+ "fmt"
"log"
"net"
"net/http"
@@ -13,6 +14,8 @@ func getIP(r *http.Request) (string, error) {
ips := r.Header.Get("X-Forwarded-For")
splitIps := strings.Split(ips, ",")
+ fmt.Println(r.RemoteAddr)
+
if len(splitIps) > 0 {
netIP := net.ParseIP(splitIps[len(splitIps)-1])
if netIP != nil {