Lines Matching refs:Udp4Srv
378 IKE_UDP_SERVICE *Udp4Srv; in IkeOpenInputUdp4() local
383 Udp4Srv = IkeLookupUdp (Private, Controller, IP_VERSION_4); in IkeOpenInputUdp4()
385 if (Udp4Srv != NULL) { in IkeOpenInputUdp4()
389 Udp4Srv = AllocateZeroPool (sizeof (IKE_UDP_SERVICE)); in IkeOpenInputUdp4()
391 if (Udp4Srv == NULL) { in IkeOpenInputUdp4()
397 Udp4Srv->Input = UdpIoCreateIo ( in IkeOpenInputUdp4()
405 if (Udp4Srv->Input == NULL) { in IkeOpenInputUdp4()
406 FreePool (Udp4Srv); in IkeOpenInputUdp4()
410 Udp4Srv->NicHandle = Controller; in IkeOpenInputUdp4()
411 Udp4Srv->ImageHandle = ImageHandle; in IkeOpenInputUdp4()
412 Udp4Srv->ListHead = &(Private->Udp4List); in IkeOpenInputUdp4()
413 Udp4Srv->IpVersion = UDP_IO_UDP4_VERSION; in IkeOpenInputUdp4()
414 Udp4Srv->IsConfigured = FALSE; in IkeOpenInputUdp4()
416 ZeroMem (&Udp4Srv->DefaultAddress, sizeof (EFI_IP_ADDRESS)); in IkeOpenInputUdp4()
421 InsertTailList (&Private->Udp4List, &Udp4Srv->List); in IkeOpenInputUdp4()
425 UdpIoRecvDatagram (Udp4Srv->Input, IkeDispatch, Udp4Srv, 0); in IkeOpenInputUdp4()