mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
10 lines
360 B
Go
10 lines
360 B
Go
//go:build !unsafe_buffer && !disable_unsafe_buffer
|
|
|
|
package common
|
|
|
|
import "runtime"
|
|
|
|
// net/*Conn in windows keeps the buffer pointer passed in during io operations, so we disable it by default.
|
|
// https://github.com/golang/go/blob/4068be56ce7721a3d75606ea986d11e9ca27077a/src/internal/poll/fd_windows.go#L876
|
|
|
|
const UnsafeBuffer = runtime.GOOS != "windows"
|