HomeSort by relevance Sort by last modified time
    Searched refs:gateway (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /system/netd/server/
NetlinkHandler.h 52 void notifyRouteChange(NetlinkEvent::Action action, const char *route, const char *gateway, const char *iface);
  /external/autotest/client/cros/
routing.py 32 self.gateway = gway
49 self._intToIp(self.gateway),
98 gateway = route[col_map["Gateway"]]
101 routes.append(IPv4Route(interface, destination, gateway, flags, mask))
127 # Dest DestPrefix Src SrcPrefix Gateway Metric RefCnt UseCnt Flags Iface
133 gateway = route[4]
136 routes.append(IPv6Route(interface, destination, gateway, flags, prefix))
dhcp_test_base.py 31 DHCPCD_KEY_GATEWAY = 'Gateway'
363 for prefix, destination, gateway in classless_static_routes:
365 logging.info('Using %s as the default gateway', gateway)
366 expected_routers = [ gateway ]
370 raise error.TestFail('Expected to be configured with gateway %s, '
  /external/autotest/client/site_tests/network_DhcpBrokenDefaultGateway/
network_DhcpBrokenDefaultGateway.py 20 """Test application of broken gateway route from DHCP server."""
23 """Check that the ipconfig in the client shows the gateway IP.
26 @param gateway_ip string expected gateway IP address.
38 ipconfig_gateway = ipconfig_properties['Gateway']
40 raise error.TestFail('Shill gateway %s does '
46 """Check that the routing table in the client shows the gateway IP.
49 @param gateway_ip string expected gateway IP address.
56 if default_route.gateway != gateway_ip:
57 raise error.TestFail('Routing table gateway %s does '
59 (default_route.gateway, gateway_ip)
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
DhcpInfoTest.java 29 String expectedDefault = "ipaddr 0.0.0.0 gateway 0.0.0.0 netmask 0.0.0.0 dns1 0.0.0.0 "
36 String expected = "ipaddr " + STR_ADDR1 + " gateway " + STR_ADDR2 + " netmask "
46 dhcpInfo.gateway = ipToInteger(STR_ADDR2);
  /device/generic/goldfish/dhcp/client/
dhcpclient.h 84 in_addr_t gateway; member in struct:DhcpClient::DhcpInfo
dhcpclient.cpp 358 mDhcpInfo.gateway =
434 res = mRouter.setDefaultGateway(mDhcpInfo.gateway, mInterface.getIndex());
442 property_set(propName, addrToStr(mDhcpInfo.gateway).c_str());
  /device/generic/goldfish/dhcp/server/
dhcpserver.h 39 in_addr_t gateway,
dhcpserver.cpp 41 in_addr_t gateway,
47 mGateway(gateway),
  /external/syslinux/gpxe/src/include/gpxe/
ip.h 73 /** Gateway address */
74 struct in_addr gateway; member in struct:ipv4_miniroute
ip6.h 77 struct in6_addr gateway );
  /system/core/libnetutils/include/netutils/
ifc.h 59 uint32_t prefixLength, in_addr_t gateway,
  /system/core/libnetutils/
dhcpclient.c 102 uint32_t gateway; member in struct:dhcp_info
114 void get_dhcp_info(uint32_t *ipaddr, uint32_t *gateway, uint32_t *prefixLength,
119 *gateway = last_good_info.gateway;
130 return ifc_configure(ifname, info->ipaddr, info->prefixLength, info->gateway,
155 strcpy(gway, ipaddr(info->gateway));
205 if (optlen >= 4) memcpy(&info->gateway, x, 4);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
CellularDataService.java 293 // Process gateway
301 for (String gateway : gateways) {
302 gateway = gateway.trim();
305 ia = NetworkUtils.numericToInetAddress(gateway);
308 loge("Unknown gateway: " + gateway + ", exception = " + e);
  /device/google/cuttlefish_common/host/commands/launch/
ril_region_handler.cc 52 LOG(INFO) << "gateway = " << ril_gateway;
68 // Gateway
86 // gateway and the broadcast)
144 snprintf(dest->gateway, sizeof(dest->gateway), "%s",
  /external/syslinux/core/fs/pxe/
pxe.h 197 * Compute the suitable gateway for a specific route -- too many
200 static inline uint32_t gateway(uint32_t ip) function
203 return IPInfo.gateway;
dhcp_option.c 26 IPInfo.gateway = *(const uint32_t *)data;
221 * gate_way - default gateway router IP
  /external/syslinux/core/legacynet/
core.c 139 udp_write.gw = gateway(udp_write.ip);
175 udp_write.gw = gateway(udp_write.ip);
  /external/autotest/client/common_lib/cros/
dbus_send_unittest.py 80 variant string "gateway.2wire.net"
162 'IgnoredDNSSearchPaths': 'gateway.2wire.net',
  /external/syslinux/gpxe/src/arch/i386/include/gpxe/
ibft.h 171 /** Default gateway */
172 struct ibft_ipaddr gateway; member in struct:ibft_nic
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiBackupDataV1Parser.java 500 InetAddress gateway = NetworkUtils.numericToInetAddress(gatewayAddressString); local
501 RouteInfo route = new RouteInfo(dest, gateway);
503 staticIpConfiguration.gateway = gateway;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
AdvancedOptionsFlowInfo.java 43 public static final int GATEWAY = 9;
56 GATEWAY,
180 * Get the initial gateway.
184 return mIpConfiguration.getStaticIpConfiguration().gateway;
  /compatibility/cdd/9_security-model/
9_8_privacy.md 60 routes network data traffic through a proxy server or VPN gateway (for example,
  /external/autotest/client/common_lib/cros/network/
interface.py 22 # gateway IP address, and the metric value visible in the routing table.
24 'gateway',
489 gateway = match.group(1)
496 gateway=gateway, metric=metric))
  /external/syslinux/com32/include/syslinux/
config.h 61 uint32_t gateway; member in struct:syslinux_ipinfo

Completed in 2736 milliseconds

12 3 4 5