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

/xnu-2422.115.4/bsd/netinet6/
H A Dfrag6.c126 static int ip6_maxfragpackets; /* max packets in reass queues */ variable
141 CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &ip6_maxfragpackets, 0,
175 ip6_maxfragpackets = nmbclusters / 32;
176 ip6_maxfrags = ip6_maxfragpackets * 2;
352 /* If ip6_maxfragpackets or ip6_maxfrags is 0, never accept fragments */
353 if (ip6_maxfragpackets == 0 || ip6_maxfrags == 0) {
969 if (ip6_maxfragpackets >= 0) {
970 while (frag6_nfragpackets > (unsigned)ip6_maxfragpackets &&
1103 if (ip6_maxfragpackets < 0)
1110 if (ip6_maxfragpackets >
[all...]

Completed in 19 milliseconds