Searched refs:RULE_MAXSIZE (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/netpfil/ipfw/ |
H A D | ip_fw_sockopt.c | 3805 #define RULE_MAXSIZE (512*sizeof(u_int32_t)) in ipfw_ctl() macro 3873 rule = malloc(RULE_MAXSIZE, M_TEMP, M_WAITOK); in ipfw_ctl() 3874 error = sooptcopyin(sopt, rule, RULE_MAXSIZE, in ipfw_ctl() 4113 #undef RULE_MAXSIZE in ipfw_ctl() 4115 #define RULE_MAXSIZE (256*sizeof(u_int32_t)) macro 4130 tmp = malloc(RULE_MAXSIZE, M_TEMP, M_NOWAIT | M_ZERO); in convert_rule_to_7() 4134 bcopy(rule, tmp, RULE_MAXSIZE); in convert_rule_to_7() 4183 struct ip_fw7 *tmp = malloc(RULE_MAXSIZE, M_TEMP, M_NOWAIT | M_ZERO); in convert_rule_to_8() 4188 bcopy(rule7, tmp, RULE_MAXSIZE); in convert_rule_to_8()
|