Home
last modified time | relevance | path

Searched refs:Udp6Cfg (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
DMtftp6Impl.c144 EFI_UDP6_CONFIG_DATA Udp6Cfg; in EfiMtftp6Configure() local
223 ZeroMem (&Udp6Cfg, sizeof (EFI_UDP6_CONFIG_DATA)); in EfiMtftp6Configure()
225 Udp6Cfg.AcceptPromiscuous = FALSE; in EfiMtftp6Configure()
226 Udp6Cfg.AcceptAnyPort = FALSE; in EfiMtftp6Configure()
227 Udp6Cfg.AllowDuplicatePort = FALSE; in EfiMtftp6Configure()
228 Udp6Cfg.TrafficClass = 0; in EfiMtftp6Configure()
229 Udp6Cfg.HopLimit = 128; in EfiMtftp6Configure()
230 Udp6Cfg.ReceiveTimeout = 0; in EfiMtftp6Configure()
231 Udp6Cfg.TransmitTimeout = 0; in EfiMtftp6Configure()
232 Udp6Cfg.StationPort = Instance->Config->LocalPort; in EfiMtftp6Configure()
[all …]
DMtftp6Rrq.c381 EFI_UDP6_CONFIG_DATA *Udp6Cfg; in Mtftp6RrqConfigMcastUdpIo() local
386 Udp6Cfg = &(McastIo->Config.Udp6); in Mtftp6RrqConfigMcastUdpIo()
392 ZeroMem (Udp6Cfg, sizeof (EFI_UDP6_CONFIG_DATA)); in Mtftp6RrqConfigMcastUdpIo()
394 Udp6Cfg->AcceptPromiscuous = FALSE; in Mtftp6RrqConfigMcastUdpIo()
395 Udp6Cfg->AcceptAnyPort = FALSE; in Mtftp6RrqConfigMcastUdpIo()
396 Udp6Cfg->AllowDuplicatePort = FALSE; in Mtftp6RrqConfigMcastUdpIo()
397 Udp6Cfg->TrafficClass = 0; in Mtftp6RrqConfigMcastUdpIo()
398 Udp6Cfg->HopLimit = 128; in Mtftp6RrqConfigMcastUdpIo()
399 Udp6Cfg->ReceiveTimeout = 0; in Mtftp6RrqConfigMcastUdpIo()
400 Udp6Cfg->TransmitTimeout = 0; in Mtftp6RrqConfigMcastUdpIo()
[all …]
DMtftp6Support.c389 EFI_UDP6_CONFIG_DATA *Udp6Cfg; in Mtftp6ConfigUdpIo() local
392 Udp6Cfg = &(UdpIo->Config.Udp6); in Mtftp6ConfigUdpIo()
394 ZeroMem (Udp6Cfg, sizeof (EFI_UDP6_CONFIG_DATA)); in Mtftp6ConfigUdpIo()
399 Udp6Cfg->AcceptPromiscuous = FALSE; in Mtftp6ConfigUdpIo()
400 Udp6Cfg->AcceptAnyPort = FALSE; in Mtftp6ConfigUdpIo()
401 Udp6Cfg->AllowDuplicatePort = FALSE; in Mtftp6ConfigUdpIo()
402 Udp6Cfg->TrafficClass = 0; in Mtftp6ConfigUdpIo()
403 Udp6Cfg->HopLimit = 128; in Mtftp6ConfigUdpIo()
404 Udp6Cfg->ReceiveTimeout = 0; in Mtftp6ConfigUdpIo()
405 Udp6Cfg->TransmitTimeout = 0; in Mtftp6ConfigUdpIo()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
DIkeService.c167 EFI_UDP6_CONFIG_DATA Udp6Cfg; in IkeConfigUdp6() local
169 ZeroMem (&Udp6Cfg, sizeof (EFI_UDP6_CONFIG_DATA)); in IkeConfigUdp6()
173 &Udp6Cfg, in IkeConfigUdp6()
185 &Udp6Cfg.RemoteAddress, in IkeConfigUdp6()
191 return Udp6->Configure (Udp6, &Udp6Cfg); in IkeConfigUdp6()
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
DPxeBcImpl.c1559 EFI_UDP6_CONFIG_DATA *Udp6Cfg; in EfiPxeBcSetIpFilter() local
1677 Udp6Cfg = &Private->Udp6CfgData; in EfiPxeBcSetIpFilter()
1678 if ((AcceptPromiscuous != Udp6Cfg->AcceptPromiscuous) || MultiCastUpdate) { in EfiPxeBcSetIpFilter()
1688 Udp6Cfg->AcceptPromiscuous = AcceptPromiscuous; in EfiPxeBcSetIpFilter()
1689 Status = Private->Udp6Read->Configure (Private->Udp6Read, Udp6Cfg); in EfiPxeBcSetIpFilter()