We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2caf18 commit a277689Copy full SHA for a277689
1 file changed
backend/cmd/main.go
@@ -570,5 +570,5 @@ func getUDPFilter(addrs []net.IP, backendAddr net.IP, port uint16) string {
570
srcUdpAddrsStr := strings.Join(srcUdpAddrs, " or ")
571
dstUdpAddrsStr := strings.Join(dstUdpAddrs, " or ")
572
573
- return fmt.Sprintf("(%s) and (%s) and (%s or dst host %s)", udpPort, srcUdpAddrsStr, dstUdpAddrsStr, backendAddr)
+ return fmt.Sprintf("(%s) and (%s) and (%s or (dst host %s))", udpPort, srcUdpAddrsStr, dstUdpAddrsStr, backendAddr)
574
}
0 commit comments