Home | History | Annotate | Download | only in netboot

Lines Matching full:packet

563     /* disable packet filtering before setting filter */
579 /* enable packet filitering */
902 * Description: transmits a packet and waits for completion or timeout.
906 * unsigned short s: size of the data-part of the packet.
907 * char *p: the data for the packet.
917 const char *p) /* Packet */
943 /* pad to minimum packet size */
955 printf("sis900_transmit: Queued Tx packet size %d.\n", (int) s);
967 /* packet unsuccessfully transmited */
978 * Description: checks for a received packet and returns it if found.
982 * Returns: 1 if a packet was recieved.
986 * Returns (copies) the packet to the array nic->packet.
987 * Returns the length of the packet in nic->packetlen.
1003 printf("sis900_poll: got a packet: cur_rx:%d, status:%X\n",
1009 /* corrupted packet received */
1010 printf("sis900_poll: Corrupted packet received, buffer status = %X\n",
1014 /* give packet to higher level routine */
1015 memcpy(nic->packet, (rxb + cur_rx*RX_BUF_SIZE), nic->packetlen);