/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _XT_RATE_H #define _XT_RATE_H #include <linux/types.h> /* timings are in milliseconds. */ #define XT_LIMIT_SCALE … struct xt_limit_priv; /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490 seconds, or one every 59 hours. */ struct xt_rateinfo { … }; #endif /*_XT_RATE_H*/