mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-10 23:46:34 +00:00
14 lines
236 B
Go
14 lines
236 B
Go
//go:build linux
|
|
|
|
package ingress
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cloudflare/cloudflared/packet"
|
|
)
|
|
|
|
func getFunnel(t *testing.T, proxy *icmpProxy, tuple flow3Tuple) (packet.Funnel, bool) {
|
|
return proxy.srcFunnelTracker.Get(tuple)
|
|
}
|