• Home
  • Raw
  • Download

Lines Matching refs:packet

69     QueuedPacket   packet;  in queued_packet_create()  local
70 size_t packet_size = sizeof(*packet); in queued_packet_create()
75 packet = g_malloc(packet_size); in queued_packet_create()
76 packet->next = NULL; in queued_packet_create()
77 packet->expiration = 0; in queued_packet_create()
78 packet->size = (size_t)size; in queued_packet_create()
79 packet->opaque = opaque; in queued_packet_create()
82 packet->data = (void*)(packet+1); in queued_packet_create()
83 memcpy( (char*)packet->data, (char*)data, packet->size ); in queued_packet_create()
85 packet->data = (void*)data; in queued_packet_create()
87 return packet; in queued_packet_create()
91 queued_packet_free( QueuedPacket packet ) in queued_packet_free() argument
93 if (packet) { in queued_packet_free()
94 g_free( packet ); in queued_packet_free()
120 QueuedPacket packet = shaper->packets; in netshaper_destroy() local
121 shaper->packets = packet->next; in netshaper_destroy()
122 packet->next = NULL; in netshaper_destroy()
123 queued_packet_free(packet); in netshaper_destroy()
137 QueuedPacket packet; in netshaper_expires() local
139 while ((packet = shaper->packets) != NULL) { in netshaper_expires()
142 if (packet->expiration > now) in netshaper_expires()
145 shaper->packets = packet->next; in netshaper_expires()
146 shaper->send_func( packet->data, packet->size, packet->opaque ); in netshaper_expires()
147 queued_packet_free(packet); in netshaper_expires()
188 QueuedPacket packet = shaper->packets; in netshaper_set_rate() local
189 shaper->packets = packet->next; in netshaper_set_rate()
190 shaper->send_func(packet->data, packet->size, packet->opaque); in netshaper_set_rate()
191 g_free(packet); in netshaper_set_rate()
229 QueuedPacket packet; in netshaper_send_aux() local
231 packet = queued_packet_create( data, size, opaque, shaper->do_copy ); in netshaper_send_aux()
233 packet->expiration = shaper->block_until; in netshaper_send_aux()
241 if (node == NULL || node->expiration > packet->expiration ) in netshaper_send_aux()
245 packet->next = *pnode; in netshaper_send_aux()
246 *pnode = packet; in netshaper_send_aux()
248 if (packet == shaper->packets) in netshaper_send_aux()
249 timer_mod( shaper->timer, packet->expiration ); in netshaper_send_aux()
297 QueuedPacket packet; member
310 if (session->packet) { in session_free()
311 queued_packet_free(session->packet); in session_free()
312 session->packet = NULL; in session_free()
433 QueuedPacket packet = session->packet; in netdelay_expires() local
435 if (packet == NULL) in netdelay_expires()
441 delay->send_func( packet->data, packet->size, packet->opaque ); in netdelay_expires()
442 session->packet = NULL; in netdelay_expires()
443 queued_packet_free( packet ); in netdelay_expires()
487 if (session->packet) { in netdelay_set_latency()
488 QueuedPacket packet = session->packet; in netdelay_set_latency() local
489 delay->send_func( packet->data, packet->size, packet->opaque ); in netdelay_set_latency()
534 if (session->packet != NULL) { in netdelay_send_aux()
564 session->packet = queued_packet_create( data, size, opaque, 1 ); in netdelay_send_aux()