Lines Matching refs:packets
99 QueuedPacket packets; /* list of queued packets, ordered by expiration date */ member
119 while (shaper->packets) { in netshaper_destroy()
120 QueuedPacket packet = shaper->packets; in netshaper_destroy()
121 shaper->packets = packet->next; in netshaper_destroy()
139 while ((packet = shaper->packets) != NULL) { in netshaper_expires()
145 shaper->packets = packet->next; in netshaper_expires()
152 if (shaper->packets) { in netshaper_expires()
153 shaper->block_until = shaper->packets->expiration; in netshaper_expires()
168 shaper->packets = NULL; in netshaper_create()
187 while (shaper->packets) { in netshaper_set_rate()
188 QueuedPacket packet = shaper->packets; in netshaper_set_rate()
189 shaper->packets = packet->next; in netshaper_set_rate()
238 pnode = &shaper->packets; in netshaper_send_aux()
248 if (packet == shaper->packets) in netshaper_send_aux()
274 if (shaper->packets) in netshaper_can_send()