Restored old limits
This commit is contained in:
		@ -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()
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user