From 26c51176e4a7bd89f9b7bc64f8f986606922dd6a Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Fri, 20 Nov 2020 21:58:44 +0800 Subject: [PATCH] proxy: add back ipv6 endpoints for compatibility with original project --- proxy/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxy/main.go b/proxy/main.go index fd5e289..77f4e96 100644 --- a/proxy/main.go +++ b/proxy/main.go @@ -89,6 +89,8 @@ func main() { // Start HTTP server http.HandleFunc("/", invalidHandler) http.HandleFunc("/bird", birdHandler) + http.HandleFunc("/bird6", birdHandler) http.HandleFunc("/traceroute", tracerouteHandler) + http.HandleFunc("/traceroute6", tracerouteHandler) http.ListenAndServe(*listenParam, handlers.LoggingHandler(os.Stdout, accessHandler(http.DefaultServeMux))) }