Home | History | Annotate | Download | only in TcpDxe

Lines Matching defs:IpIo

55   Send the segment to IP via IpIo function.

77 IP_IO *IpIo;
85 IpIo = NULL;
86 IpSender = IpIoFindSender (&IpIo, Version, Src);
97 // configuration data. Here we get the IpIo we need and use the default IP
98 // instance in this IpIo to send the packet. The dest address is configured
107 IpIo = TcpProto->TcpService->IpIo;
121 ASSERT (Version == IpIo->IpVersion);
136 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, Dest, &Override);
158 @retval EFI_NOT_STARTED The IpIo is not configured.
171 IP_IO *IpIo;
176 IpIo = NULL;
177 IpIoFindSender (&IpIo, IP_VERSION_6, Neighbor);
179 if (IpIo == NULL) {
180 DEBUG ((EFI_D_WARN, "Tcp6AddNeighbor: No appropriate IpIo.\n"));
187 IpIo = TcpProto->TcpService->IpIo;
190 return IpIoRefreshNeighbor (IpIo, Neighbor, Timeout);