Searched defs:iprh_tmp (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip_frag.c333 struct ip_reass_helper *iprh, *iprh_tmp, *iprh_prev=NULL; local
357 iprh_tmp = (struct ip_reass_helper*)q->payload;
358 if (iprh->start < iprh_tmp->start) {
364 if ((iprh->start < iprh_prev->end) || (iprh->end > iprh_tmp->start)) {
375 } else if(iprh->start == iprh_tmp->start) {
379 } else if(iprh->start < iprh_tmp->end) {
386 if (iprh_prev->end != iprh_tmp->start) {
393 q = iprh_tmp->next_pbuf;
394 iprh_prev = iprh_tmp;
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_frag.c223 struct ip6_reass_helper *iprh, *iprh_tmp; local
314 iprh_tmp = *pnext;
316 if (start < iprh_tmp->start) {
319 if (end > iprh_tmp->start) {
328 else if (start == iprh_tmp->start) {
334 else if (start < iprh_tmp->end) {
343 if (validlen == iprh_tmp->start) {
344 validlen = iprh_tmp->end;
414 for (iprh_tmp = iprh->next; iprh_tmp !
[all...]

Completed in 79 milliseconds