Re-remove ipHandler function.

Had been removed in 2a46db2c01 and was
erroneously restored in the merge
36debdfdd2.
This commit is contained in:
David Fifield 2017-08-11 13:08:36 -07:00
parent 36debdfdd2
commit 8dcd337ce4

View file

@ -12,7 +12,6 @@ import (
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log" "log"
"net"
"net/http" "net/http"
"strings" "strings"
"time" "time"
@ -222,15 +221,6 @@ func robotsTxtHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("User-agent: *\nDisallow:\n")) w.Write([]byte("User-agent: *\nDisallow:\n"))
} }
func ipHandler(w http.ResponseWriter, r *http.Request) {
remoteAddr := r.RemoteAddr
if net.ParseIP(remoteAddr).To4() == nil {
remoteAddr = "[" + remoteAddr + "]"
}
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
w.Write([]byte(remoteAddr))
}
func main() { func main() {
var acmeEmail string var acmeEmail string
var acmeHostnamesCommas string var acmeHostnamesCommas string