(value any)
| 801 | } |
| 802 | |
| 803 | func (this *Rule) containsIP(value any) bool { |
| 804 | if this.ipRangeListValue == nil { |
| 805 | return false |
| 806 | } |
| 807 | return this.ipRangeListValue.Contains(types.String(value)) |
| 808 | } |
| 809 | |
| 810 | func (this *Rule) ipToInt64(ip net.IP) int64 { |
| 811 | if len(ip) == 0 { |