Searched refs:autoinc_step (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dip_fw2.c155 static int autoinc_step = 100; /* bounded to 1..1000 in add_rule() */ variable
170 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, autoinc_step, CTLFLAG_RW | CTLFLAG_LOCKED,
171 &autoinc_step, 0, "Rule number autincrement step");
2785 * default rule, and add autoinc_step
2787 if (autoinc_step < 1)
2788 autoinc_step = 1;
2789 else if (autoinc_step > 1000)
2790 autoinc_step = 1000;
2800 if (rule->rulenum < IPFW_DEFAULT_RULE - autoinc_step)
2801 rule->rulenum += autoinc_step;
[all...]

Completed in 18 milliseconds