Home | Info | Community | Development | myReactOS | Contact Us
[static]
Remove all pcbs on the given list.
Definition at line 14 of file tcp_helper.c.
Referenced by tcp_remove_all().
{ struct tcp_pcb *pcb = pcb_list; struct tcp_pcb *pcb2; while(pcb != NULL) { pcb2 = pcb; pcb = pcb->next; tcp_abort(pcb2); } }