1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 18:36:10 -04:00
v2fly/transport/internet/socket_activation_other.go
2024-09-05 20:55:24 +01:00

14 lines
302 B
Go

//go:build !unix
// +build !unix
package internet
import (
"fmt"
"github.com/v2fly/v2ray-core/v5/common/net"
)
func activateSocket(address string, f func(network, address string, fd uintptr)) (net.Listener, error) {
return nil, fmt.Errorf("socket activation is not supported on this platform")
}