Lines Matching refs:Udp6Srv
476 IKE_UDP_SERVICE *Udp6Srv; in IkeOpenInputUdp6() local
478 Udp6Srv = IkeLookupUdp (Private, Controller, IP_VERSION_6); in IkeOpenInputUdp6()
480 if (Udp6Srv != NULL) { in IkeOpenInputUdp6()
484 Udp6Srv = AllocateZeroPool (sizeof (IKE_UDP_SERVICE)); in IkeOpenInputUdp6()
486 if (Udp6Srv == NULL) { in IkeOpenInputUdp6()
492 Udp6Srv->Input = UdpIoCreateIo ( in IkeOpenInputUdp6()
500 if (Udp6Srv->Input == NULL) { in IkeOpenInputUdp6()
501 FreePool (Udp6Srv); in IkeOpenInputUdp6()
505 Udp6Srv->NicHandle = Controller; in IkeOpenInputUdp6()
506 Udp6Srv->ImageHandle = ImageHandle; in IkeOpenInputUdp6()
507 Udp6Srv->ListHead = &(Private->Udp6List); in IkeOpenInputUdp6()
508 Udp6Srv->IpVersion = UDP_IO_UDP6_VERSION; in IkeOpenInputUdp6()
509 Udp6Srv->IsConfigured = FALSE; in IkeOpenInputUdp6()
511 ZeroMem (&Udp6Srv->DefaultAddress, sizeof (EFI_IP_ADDRESS)); in IkeOpenInputUdp6()
516 InsertTailList (&Private->Udp6List, &Udp6Srv->List); in IkeOpenInputUdp6()
520 UdpIoRecvDatagram (Udp6Srv->Input, IkeDispatch, Udp6Srv, 0); in IkeOpenInputUdp6()