1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 09:57:04 -04:00
v2fly/transport/internet/filelocker.go

12 lines
124 B
Go
Raw Normal View History

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