Xray-core/transport/internet/filelocker.go

12 lines
124 B
Go
Raw Normal View History

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