Lines Matching refs:Udp4Srv
403 IKE_UDP_SERVICE *Udp4Srv; in IkeOpenInputUdp4() local
408 Udp4Srv = IkeLookupUdp (Private, Controller, IP_VERSION_4); in IkeOpenInputUdp4()
410 if (Udp4Srv != NULL) { in IkeOpenInputUdp4()
414 Udp4Srv = AllocateZeroPool (sizeof (IKE_UDP_SERVICE)); in IkeOpenInputUdp4()
416 if (Udp4Srv == NULL) { in IkeOpenInputUdp4()
422 Udp4Srv->Input = UdpIoCreateIo ( in IkeOpenInputUdp4()
430 if (Udp4Srv->Input == NULL) { in IkeOpenInputUdp4()
431 FreePool (Udp4Srv); in IkeOpenInputUdp4()
435 Udp4Srv->NicHandle = Controller; in IkeOpenInputUdp4()
436 Udp4Srv->ImageHandle = ImageHandle; in IkeOpenInputUdp4()
437 Udp4Srv->ListHead = &(Private->Udp4List); in IkeOpenInputUdp4()
438 Udp4Srv->IpVersion = UDP_IO_UDP4_VERSION; in IkeOpenInputUdp4()
439 Udp4Srv->IsConfigured = FALSE; in IkeOpenInputUdp4()
441 ZeroMem (&Udp4Srv->DefaultAddress, sizeof (EFI_IP_ADDRESS)); in IkeOpenInputUdp4()
446 InsertTailList (&Private->Udp4List, &Udp4Srv->List); in IkeOpenInputUdp4()
450 UdpIoRecvDatagram (Udp4Srv->Input, IkeDispatch, Udp4Srv, 0); in IkeOpenInputUdp4()