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

/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dtcp.c237 struct grub_net_buff *nb_fin; local
256 nb_fin = grub_netbuff_alloc (sizeof (*tcph_fin)
259 if (!nb_fin)
261 err = grub_netbuff_reserve (nb_fin, GRUB_NET_OUR_MAX_IP_HEADER_SIZE
265 grub_netbuff_free (nb_fin);
271 err = grub_netbuff_put (nb_fin, sizeof (*tcph_fin));
274 grub_netbuff_free (nb_fin);
279 tcph_fin = (void *) nb_fin->data;
285 err = tcp_send (nb_fin, sock);
288 grub_netbuff_free (nb_fin);
[all...]

Completed in 26 milliseconds