Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 676d55ae30ea3b688f0386f70553489f25f24d55 authored by Linus Torvalds on 20 September 2005, 03:00:41 UTC
Linux v2.6.14-rc2
Tip revision: 676d55a
ip6t_limit.h
#ifndef _IP6T_RATE_H
#define _IP6T_RATE_H

/* timings are in milliseconds. */
#define IP6T_LIMIT_SCALE 10000

/* 1/10,000 sec period => max of 10,000/sec.  Min rate is then 429490
   seconds, or one every 59 hours. */
struct ip6t_rateinfo {
	u_int32_t avg;    /* Average secs between packets * scale */
	u_int32_t burst;  /* Period multiplier for upper limit. */

	/* Used internally by the kernel */
	unsigned long prev;
	u_int32_t credit;
	u_int32_t credit_cap, cost;

	/* Ugly, ugly fucker. */
	struct ip6t_rateinfo *master;
};
#endif /*_IPT_RATE_H*/
back to top