1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-19 22:15:23 +00:00
v2fly/transport/internet/filelocker.go

12 lines
124 B
Go
Raw Normal View History

2020-10-29 07:30:38 +00:00
package internet
import (
"os"
)
// FileLocker is UDS access lock
type FileLocker struct {
path string
file *os.File
}