mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-14 12:43:18 +00:00
973f3da54f
Fixed a panic on worker.go
12 lines
119 B
Go
12 lines
119 B
Go
package restriction
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type UserMaxIp struct {
|
|
User string
|
|
IpAddress net.IP
|
|
Time int64
|
|
}
|