fix ip bans lol
This commit is contained in:
parent
70feeed809
commit
a06a671415
@ -271,7 +271,12 @@ func decAddr(encaddr, key string) string {
|
|||||||
res_bytes[idx] = encaddr_bytes[idx] ^ b
|
res_bytes[idx] = encaddr_bytes[idx] ^ b
|
||||||
}
|
}
|
||||||
res := string(res_bytes)
|
res := string(res_bytes)
|
||||||
return strings.Trim(res, " ")
|
res = strings.Trim(res, " ")
|
||||||
|
if strings.Index(res, "/") == -1 {
|
||||||
|
// TODO: ipv6
|
||||||
|
res += "/32"
|
||||||
|
}
|
||||||
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
var exp_valid_newsgroup = regexp.MustCompilePOSIX(`^[a-zA-Z0-9.]{1,128}$`)
|
var exp_valid_newsgroup = regexp.MustCompilePOSIX(`^[a-zA-Z0-9.]{1,128}$`)
|
||||||
|
Reference in New Issue
Block a user