Xray-core/transport/internet/restriction/ip.go
amir-devman 973f3da54f chore(restriction): move config to policies
Fixed a panic on worker.go
2024-02-05 20:05:20 +00:00

12 lines
119 B
Go

package restriction
import (
"net"
)
type UserMaxIp struct {
User string
IpAddress net.IP
Time int64
}