traefik/pkg/server/server_entrypoint_listenconfig_other.go
2024-01-30 14:56:05 +01:00

16 lines
330 B
Go

//go:build !(linux || freebsd || openbsd || darwin)
package server
import (
"net"
"github.com/traefik/traefik/v3/pkg/config/static"
)
// newListenConfig creates a new net.ListenConfig for the given configuration of
// the entry point.
func newListenConfig(configuration *static.EntryPoint) (lc net.ListenConfig) {
return
}