Searched refs:Netmask (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Route.h28 /// The route entry in the route table. Dest/Netmask is the destion
30 /// order to reach the Dest/Netmask. If the Flag has IP4_DIRECT_ROUTE
38 IP4_ADDR Netmask; member in struct:__anon11227
121 @param[in] Netmask The netmask of the destination
133 IN IP4_ADDR Netmask,
142 @param Netmask The netmask of the Dest
154 IN IP4_ADDR Netmask,
H A DIp4Route.c22 @param[in] Netmask The destination network mask
32 IN IP4_ADDR Netmask,
48 RtEntry->Netmask = Netmask;
301 @param[in] Netmask The netmask of the destination
313 IN IP4_ADDR Netmask,
325 Head = &(RtTable->RouteArea[NetGetMaskLength (Netmask)]);
333 if (IP4_NET_EQUAL (RtEntry->Dest, Dest, Netmask) && (RtEntry->NextHop == Gateway)) {
341 RtEntry = Ip4CreateRouteEntry (Dest, Netmask, Gateway);
363 @param Netmask Th
30 Ip4CreateRouteEntry( IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR GateWay ) argument
310 Ip4AddRoute( IN OUT IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR Gateway ) argument
372 Ip4DelRoute( IN OUT IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR Gateway ) argument
[all...]
H A DIp4Impl.c870 IP4_ADDR Netmask; local
908 CopyMem (&Netmask, &Config->SubnetMask, sizeof (IP4_ADDR));
911 Netmask = NTOHL (Netmask);
919 IpIf = Ip4FindStationAddress (IpSb, Ip, Netmask);
931 Status = Ip4SetAddress (IpIf, Ip, Netmask);
945 Ip4AddRoute (IpInstance->RouteTable, Ip, Netmask, IP4_ALLZERO_ADDRESS);
1065 Validate that Ip/Netmask pair is OK to be used as station
1070 @param[in] Netmask The netmaks of the IP
1072 @retval TRUE The Ip/Netmask pai
1524 IP4_ADDR Netmask; local
[all...]
H A DIp4Common.h149 Find an interface of the service with the same Ip/Netmask pair.
153 @param[in] Netmask The network to find (host byte order)
162 IN IP4_ADDR Netmask
H A DIp4Common.c188 Find an interface of the service with the same Ip/Netmask pair.
192 @param[in] Netmask The network to find (host byte order)
201 IN IP4_ADDR Netmask
210 if (IpIf->Configured && (IpIf->Ip == Ip) && (IpIf->SubnetMask == Netmask)) {
H A DIp4If.c565 IP4_ADDR Netmask; local
585 Netmask = gIp4AllMasks[MIN ((Len - 1), Type << 3)];
586 Interface->NetBrdcast = (IpAddr | ~Netmask);
717 the same Ip/Netmask pair share the same interface. It is reference
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DNicIp4Variable.c35 IP4_ADDR Netmask; local
47 Netmask = EFI_NTOHL (IpConfig->SubnetMask);
49 if ((Netmask == 0) || !IP4_IS_VALID_NETMASK (Netmask) ||
50 (Station == 0) || !NetIp4IsUnicast (Station, Netmask)) {
61 if ((Gateway != 0) && (!IP4_NET_EQUAL (Station, Gateway, Netmask) ||
62 !NetIp4IsUnicast (Gateway, Netmask))) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Impl.c177 IP4_ADDR Netmask; local
191 CopyMem (&Netmask, &Config->SubnetMask, sizeof (IP4_ADDR));
194 Netmask = NTOHL (Netmask);
197 if (!NetIp4IsUnicast (Gateway, Netmask) || !IP4_NET_EQUAL (Gateway, Ip, Netmask)) {
620 IP4_ADDR Netmask; local
647 CopyMem (&Netmask, &ConfigData->SubnetMask, sizeof (IP4_ADDR));
652 Netmask = NTOHL (Netmask);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Impl.h100 IP4_ADDR Netmask; member in struct:_DHCP_SERVICE
H A DDhcp4Io.c353 Ip = HTONL (DhcpSb->Netmask);
401 DhcpSb->Netmask = DhcpSb->Para->NetMask;
405 if (DhcpSb->Netmask == 0) {
407 DhcpSb->Netmask = gIp4AllMasks[Class << 3];
453 DhcpSb->Netmask = 0;
H A DDhcp4Impl.c390 Ip = HTONL (DhcpSb->Netmask);
1210 Ip = HTONL (DhcpSb->Netmask);
1556 SubnetMask = DhcpSb->Netmask;
/vbox/src/VBox/Devices/Network/
H A DDrvNAT.cpp1504 RTNETADDRIPV4 Network, Netmask;
1506 rc = RTCidrStrToIPv4(szNetwork, &Network, &Netmask);
1515 rc = slirp_init(&pThis->pNATState, RT_H2N_U32(Network.u), Netmask.u,

Completed in 471 milliseconds