/external/android-clat/ |
BUGS | 4 - assumes the /128 ipv6 subnet it generates can use the nat64 gateway 5 - assumes the nat64 gateway has the ipv4 address in the last 32 bits of the ipv6 address (that it uses a /96 plat subnet)
|
/external/dhcpcd/dhcpcd-hooks/ |
50-dhcpcd-compat | 17 GATEWAY= 19 GATEWAY="$GATEWAY${GATEWAY:+,}$x" 36 NTPSERVERS GATEWAY DNS; do
|
95-configured | 18 setprop dhcp.${intf}.gateway "${new_routers%% *}"
|
/frameworks/base/core/java/android/net/ |
StaticIpConfiguration.java | 50 public InetAddress gateway; field in class:StaticIpConfiguration 63 gateway = source.gateway; 71 gateway = null; 79 * default gateway is not covered by the directly-connected route, it will also contain a host 80 * route to the gateway as well. This configuration is arguably invalid, but it used to work 88 if (gateway != null && !connectedRoute.matches(gateway)) { 89 routes.add(RouteInfo.makeHostRoute(gateway, iface)); 92 if (gateway != null) [all...] |
RouteInfo.java | 40 * implied by the gateway IP address. 41 * <li>a gateway {@link InetAddress} indicating the next hop to use. If this is {@code null} it 45 * Either the destination or the gateway may be {@code null}, but not both. If the 46 * destination and gateway are both specified, they must be of the same address family 56 * The gateway address for this route. 88 * If destination is null, then gateway must be specified and the 90 * if the gateway is an instance of {@link Inet4Address}, or the IPv6 default 91 * route <code>::/0</code> if gateway is an instance of 94 * destination and gateway may not both be null. 97 * @param gateway the IP address to route packets throug [all...] |
DhcpInfo.java | 27 public int gateway; field in class:DhcpInfo 43 gateway = source.gateway; 56 str.append(" gateway "); putAddress(str, gateway); 78 dest.writeInt(gateway); 92 info.gateway = in.readInt();
|
/frameworks/base/telecomm/java/android/telecom/ |
GatewayInfo.java | 25 * Encapsulated gateway address information for outgoing call. When calls are made, the system 27 * dialed and a separate (gateway) address to actually dial. Telecom provides this information to 33 * <li> Call the appropriate gateway address. 50 * Package name of the gateway provider service that provided the gateway information. 51 * This can be used to identify the gateway address source and to load an appropriate icon when 52 * displaying gateway information in the in-call UI. 59 * Returns the gateway address to dial when placing the call. 66 * Returns the address that the user is trying to connect to via the gateway. 74 * false indicates that no gateway number is being used for the call [all...] |
/external/ipsec-tools/src/racoon/samples/roadwarrior/ |
README | 3 gateway authenticates to the client using a certificate, and the client 4 authenticates to the VPN gateway using a login and a password. 8 internal address, netmask and DNS from the VPN gateway. 17 The first server setup, in server/racoon.conf, is for a VPN gateway 44 certificate authority that signed the VPN gateway certificate in 49 racoonctl vc -u username vpn-gateway.example.net 51 Where username is your login, and vpn-gateway.example.net is 52 the DNS or IP address of the VPN gateway. racoonctl will prompt 64 racoonctl vd vpn-gateway.example.net
|
/frameworks/base/core/tests/coretests/src/android/net/ |
StaticIpConfigurationTest.java | 38 private static final InetAddress GATEWAY = IpAddress("192.0.2.1"); 51 assertNull(s.gateway); 71 s.gateway = GATEWAY; 109 s.gateway = GATEWAY; 138 s.gateway = DNS2; 160 s.gateway = GATEWAY; 161 RouteInfo defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), GATEWAY, IFACE) [all...] |
/packages/services/Telephony/src/com/android/phone/ |
CallGatewayManager.java | 31 * This class manages gateway information for outgoing calls. When calls are made, they may contain 32 * gateway information for services which route phone calls through their own service/numbers. 39 * proper number to dial. It also saves an association between the connection object and the gateway 46 * Intent extra to specify the package name of the gateway 50 // TODO: This extra is currently set by the gateway application as 58 * call. The value is a string. It holds the gateway address 59 * (phone gateway URL should start with the 'tel:' scheme) that 86 * Static method returns an object containing the gateway data stored in the extras of the 88 * @param intent The intent from which to read gateway data. 102 * @param gatewayInfo Gateway info gathered using getRawGatewayInfo [all...] |
/external/iptables/extensions/ |
libxt_TEE.man | 6 \fB\-\-gateway\fP \fIipaddr\fP 12 \-t mangle \-A PREROUTING \-i eth0 \-j TEE \-\-gateway 2001:db8::1
|
libxt_TEE.c | 34 {.name = "gateway", .id = O_GATEWAY, .type = XTTYPE_HOST, 46 " --gateway IPADDR Route packet via the gateway given by address\n" 81 printf(" --gateway %s", xtables_ipaddr_to_numeric(&info->gw.in)); 90 printf(" --gateway %s", xtables_ip6addr_to_numeric(&info->gw.in6));
|
/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);
|
/frameworks/base/services/core/java/com/android/server/net/ |
IpConfigStore.java | 51 protected static final String GATEWAY_KEY = "gateway"; 83 if (staticIpConfiguration.gateway != null) { 86 out.writeInt(1); // Have a gateway. 87 out.writeUTF(staticIpConfiguration.gateway.getHostAddress()); 213 InetAddress gateway = null; local 216 gateway = NetworkUtils.numericToInetAddress(in.readUTF()); 217 if (staticIpConfiguration.gateway == null) { 218 staticIpConfiguration.gateway = gateway; 220 loge("Duplicate gateway: " + gateway.getHostAddress()) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 9 * handlers -- base classes for server/gateway implementations
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 9 * handlers -- base classes for server/gateway implementations
|
/external/kernel-headers/original/uapi/linux/ |
route.h | 33 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ 51 #define RTF_GATEWAY 0x0002 /* destination is a gateway */
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsAddress.java | 56 // Some carriers seems to send email gateway messages in this form: 60 // as an email gateway
|
SmsMessageBase.java | 45 /** {@hide} Non-null if this is an email gateway message */ 48 /** {@hide} Non-null if this is an email gateway message */ 126 * was from an email gateway. Returns null if originating address 152 * an email gateway. Returns null if message body unavailable. 180 * @return true if this message came through an email gateway and email 188 * @return if isEmail() is true, body of the email sent through the gateway. 197 * the gateway. null otherwise 326 * Try to parse this message as an email gateway message 330 * nature of the gateway, the destination/origination address is either 332 * TP-OA/TP-DA field contains a generic gateway address and the to/fro [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
route.h | 34 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ 50 #define RTF_GATEWAY 0x0002 /* destination is a gateway */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
route.h | 33 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ 49 #define RTF_GATEWAY 0x0002 /* destination is a gateway */
|
/system/netd/server/ |
NetlinkHandler.cpp | 100 const char *gateway = evt->findParam("GATEWAY"); local 102 if (route && (gateway || iface)) { 103 notifyRouteChange(action, route, gateway, iface); 201 const char *gateway, const char *iface) { 206 *gateway ? " via " : "", 207 gateway,
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/ |
AdvancedWifiOptionsFlow.java | 180 mPageHandler.addPage(WifiFormPageType.GATEWAY); 182 case GATEWAY: 251 case GATEWAY: 284 case GATEWAY: 314 return mInitialConfiguration.getIpConfiguration().getStaticIpConfiguration().gateway; 410 String gateway = mGatewayPage.getDataSummary(); local 411 if (!TextUtils.isEmpty(gateway)) { 413 staticConfig.gateway = 414 (Inet4Address) NetworkUtils.numericToInetAddress(gateway);
|
/system/core/libnetutils/ |
dhcp_utils.c | 91 char *gateway, 111 snprintf(prop_name, sizeof(prop_name), "%s.%s.gateway", DHCP_PROP_NAME_PREFIX, p2p_interface); 112 property_get(prop_name, gateway, NULL); 118 if (gateway[0] == '\0' || strncmp(gateway, "0.0.0.0", 7) == 0) { 119 //DHCP server is our best bet as gateway 120 strncpy(gateway, server, PROPERTY_VALUE_MAX); 176 char *gateway, 201 if (fill_ip_info(interface, ipaddr, gateway, prefixLength, dns,
|
/system/bt/bta/ag/ |
bta_ag_api.c | 21 * This is the implementation of the API for the audio gateway (AG) 48 ** Description Enable the audio gateway service. When the enable 91 ** Description Disable the audio gateway service 112 ** Description Register an Audio Gateway service. 151 ** Description Deregister an audio gateway service.
|