2022-08-29 17:49:07 +00:00
|
|
|
//go:build !darwin && !linux && !windows
|
2022-08-22 16:41:51 +00:00
|
|
|
|
|
|
|
package ingress
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-08-25 11:34:19 +00:00
|
|
|
"net/netip"
|
2022-08-22 16:41:51 +00:00
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"github.com/rs/zerolog"
|
|
|
|
)
|
|
|
|
|
2022-09-02 16:29:50 +00:00
|
|
|
func newICMPProxy(listenIP netip.Addr, logger *zerolog.Logger, idleTimeout time.Duration) (ICMPProxy, error) {
|
2022-08-22 16:41:51 +00:00
|
|
|
return nil, fmt.Errorf("ICMP proxy is not implemented on %s", runtime.GOOS)
|
|
|
|
}
|