mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 05:16:35 +00:00
16 lines
279 B
Go
16 lines
279 B
Go
//go:build !darwin && !linux
|
|
|
|
package ingress
|
|
|
|
import (
|
|
"fmt"
|
|
"net/netip"
|
|
"runtime"
|
|
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
func newICMPProxy(listenIP netip.Addr, logger *zerolog.Logger) (ICMPProxy, error) {
|
|
return nil, fmt.Errorf("ICMP proxy is not implemented on %s", runtime.GOOS)
|
|
}
|