proxy: improve linux fallback logic
This commit is contained in:
parent
8e74ca0ce7
commit
f661e878c4
@ -94,14 +94,15 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
|
|||||||
[]string{
|
[]string{
|
||||||
"traceroute",
|
"traceroute",
|
||||||
"traceroute",
|
"traceroute",
|
||||||
"busybox",
|
"traceroute",
|
||||||
"busybox",
|
"traceroute",
|
||||||
},
|
},
|
||||||
[][]string{
|
[][]string{
|
||||||
{"-6", "-q1", "-N32", "-w1", query},
|
{"-6", "-q1", "-N32", "-w1", query},
|
||||||
{"-4", "-q1", "-N32", "-w1", query},
|
{"-4", "-q1", "-N32", "-w1", query},
|
||||||
{"traceroute", "-6", "-q1", "-w1", query},
|
// For Busybox traceroute which doesn't support simultaneous requests
|
||||||
{"traceroute", "-4", "-q1", "-w1", query},
|
{"-6", "-q1", "-w1", query},
|
||||||
|
{"-4", "-q1", "-w1", query},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
@ -109,14 +110,15 @@ func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.
|
|||||||
[]string{
|
[]string{
|
||||||
"traceroute",
|
"traceroute",
|
||||||
"traceroute",
|
"traceroute",
|
||||||
"busybox",
|
"traceroute",
|
||||||
"busybox",
|
"traceroute",
|
||||||
},
|
},
|
||||||
[][]string{
|
[][]string{
|
||||||
{"-4", "-q1", "-N32", "-w1", query},
|
{"-4", "-q1", "-N32", "-w1", query},
|
||||||
{"-6", "-q1", "-N32", "-w1", query},
|
{"-6", "-q1", "-N32", "-w1", query},
|
||||||
{"traceroute", "-4", "-q1", "-w1", query},
|
// For Busybox traceroute which doesn't support simultaneous requests
|
||||||
{"traceroute", "-6", "-q1", "-w1", query},
|
{"-4", "-q1", "-w1", query},
|
||||||
|
{"-6", "-q1", "-w1", query},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user