Home | History | Annotate | Download | only in Udp6Dxe

Lines Matching defs:IpIo

56   This function is the packet transmitting notify function registered to the IpIo

57 interface. It's called to signal the udp TxToken when the IpIo layer completes
76 This function processes the received datagram passed up by the IpIo layer.
240 @param[in] IpIo Pointer to the IP_IO instance.
249 IN IP_IO *IpIo,
303 // Create the IpIo for this service context.
305 Udp6Service->IpIo = IpIoCreate (ImageHandle, ControllerHandle, IP_VERSION_6);
306 if (Udp6Service->IpIo == NULL) {
311 // Set the OpenData used to open the IpIo.
324 // Configure and start the IpIo.
326 Status = IpIoOpen (Udp6Service->IpIo, &OpenData);
365 IpIoDestroy (Udp6Service->IpIo);
366 Udp6Service->IpIo = NULL;
389 // Destroy the IpIo.
391 IpIoDestroy (Udp6Service->IpIo);
392 Udp6Service->IpIo = NULL;
975 This function is the packet transmitting notify function registered to the IpIo
976 interface. It's called to signal the udp TxToken when IpIo layer completes the
1012 This function processes the received datagram passed up by the IpIo layer.
1036 // IpIo only passes received packets with Status EFI_SUCCESS or EFI_ICMP_ERROR.
1139 IP_IO *IpIo;
1148 // Item->Value, invoke IpIo to cancel this packet first. The IpIoCancelTxToken
1153 IpIo = (IP_IO *) (*((UINTN *) &Packet->ProtoData[0]));
1155 IpIoCancelTxToken (IpIo, Packet);
1649 Udp6SendPortUnreach (Udp6Service->IpIo, NetSession, Udp6Header);
1669 @param[in] IpIo Pointer to the IP_IO instance.
1678 IN IP_IO *IpIo,
1708 IpSender = IpIoFindSender (&IpIo, NetSession->IpVersion, &NetSession->Dest);
1717 // If not finding the related IpSender use the default IpIo to send out
1721 Ip6Protocol = IpIo->Ip.Ip6;
1802 IpIoSend (IpIo, Packet, IpSender, NULL, NULL, &NetSession->Source, &Override);