mirror of https://github.com/gin-gonic/gin.git
Restored old limits
This commit is contained in:
parent
e33ea855d7
commit
05d01d2282
|
@ -14,11 +14,11 @@ func rateLimit(c *gin.Context) {
|
|||
|
||||
ip := c.ClientIP()
|
||||
value := int(ips.Add(ip, 1))
|
||||
if value%10 == 0 {
|
||||
if value%50 == 0 {
|
||||
fmt.Printf("ip: %s, count: %d\n", ip, value)
|
||||
}
|
||||
if value >= 100 {
|
||||
if value%100 == 0 {
|
||||
if value >= 200 {
|
||||
if value%200 == 0 {
|
||||
fmt.Println("ip blocked")
|
||||
}
|
||||
c.Abort()
|
||||
|
|
Loading…
Reference in New Issue