Xray-core/transport/internet/filelocker.go

12 lines
124 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package internet
import (
"os"
)
// FileLocker is UDS access lock
type FileLocker struct {
path string
file *os.File
}