Remove A flag from parameters

This commit is contained in:
Lan Tian 2020-04-09 23:17:43 +08:00
parent 0218fd5c1a
commit ca90a0ef9f
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -46,8 +46,8 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
"traceroute", "traceroute",
}, },
[][]string{ [][]string{
{"-a", "-q1", "-w1", query}, {"-q1", "-w1", query},
{"-a", "-q1", "-w1", query}, {"-q1", "-w1", query},
}, },
) )
} else { } else {
@ -57,8 +57,8 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
"traceroute6", "traceroute6",
}, },
[][]string{ [][]string{
{"-a", "-q1", "-w1", query}, {"-q1", "-w1", query},
{"-a", "-q1", "-w1", query}, {"-q1", "-w1", query},
}, },
) )
} }
@ -70,8 +70,8 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
"traceroute", "traceroute",
}, },
[][]string{ [][]string{
{"-A", "-q1", "-w1", query}, {"-q1", "-w1", query},
{"-A", "-q1", "-w1", query}, {"-q1", "-w1", query},
}, },
) )
} else { } else {
@ -92,14 +92,14 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
[]string{ []string{
"traceroute", "traceroute",
"traceroute", "traceroute",
"traceroute", "busybox",
"traceroute", "busybox",
}, },
[][]string{ [][]string{
{"-6", "-A", "-q1", "-N32", "-w1", query}, {"-6", "-q1", "-N32", "-w1", query},
{"-4", "-A", "-q1", "-N32", "-w1", query}, {"-4", "-q1", "-N32", "-w1", query},
{"-6", "-q1", "-w1", query}, {"traceroute", "-6", "-q1", "-w1", query},
{"-4", "-q1", "-w1", query}, {"traceroute", "-4", "-q1", "-w1", query},
}, },
) )
} else { } else {
@ -107,14 +107,14 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
[]string{ []string{
"traceroute", "traceroute",
"traceroute", "traceroute",
"traceroute", "busybox",
"traceroute", "busybox",
}, },
[][]string{ [][]string{
{"-4", "-A", "-q1", "-N32", "-w1", query}, {"-4", "-q1", "-N32", "-w1", query},
{"-6", "-A", "-q1", "-N32", "-w1", query}, {"-6", "-q1", "-N32", "-w1", query},
{"-4", "-q1", "-w1", query}, {"traceroute", "-4", "-q1", "-w1", query},
{"-6", "-q1", "-w1", query}, {"traceroute", "-6", "-q1", "-w1", query},
}, },
) )
} }