/external/dhcpcd/dhcpcd-hooks/ |
50-dhcpcd-compat | 17 GATEWAY= 19 GATEWAY="${GATEWAY}${GATEWAY:+,}${x}" 36 NTPSERVERS GATEWAY DNS; do
|
95-configured | 11 setprop dhcp.${interface}.gateway "${new_routers%% *}"
|
/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
|
/external/bluetooth/bluez/audio/ |
gateway.c | 49 #include "gateway.h" 103 struct gateway { struct 128 struct gateway *gw = dev->gateway; 137 struct gateway *gw = dev->gateway; 161 static gboolean rfcomm_send_and_read(struct gateway *gw, gchar *data, 261 static gboolean establish_service_level_conn(struct gateway *gw) 320 struct gateway *gw = dev->gateway; [all...] |
device.h | 50 struct gateway; 64 struct gateway *gateway; member in struct:audio_device
|
manager.c | 66 #include "gateway.h" 76 GATEWAY = 1 << 1, 112 .gateway = FALSE, 143 return enabled.gateway; 201 if (device->gateway == NULL) 202 device->gateway = gateway_init(device); 273 sdp_set_info_attr(record, "Headset Audio Gateway", 0, 0); 392 sdp_set_info_attr(record, "Hands-Free Audio Gateway", 0, 0); 553 if (!device->gateway) { 555 if (!device->gateway) [all...] |
Android.mk | 12 gateway.c \
|
audio.conf | 7 Disable=Headset,Gateway
|
gateway.h | 36 struct gateway *gateway_init(struct audio_device *device);
|
manager.h | 28 gboolean gateway; member in struct:enabled_interfaces
|
/frameworks/base/core/java/android/net/ |
DhcpInfo.java | 27 public int gateway; field in class:DhcpInfo 44 str.append(" gateway "); putAddress(str, gateway); 69 dest.writeInt(gateway); 83 info.gateway = in.readInt();
|
NetworkUtils.java | 40 /** Return the gateway address for the default route for the named interface. */ 92 * @param ipInfo the IP address, default gateway, and DNS server addresses 100 ipInfo.gateway, 106 String interfaceName, int ipAddress, int netmask, int gateway, int dns1, int dns2);
|
/frameworks/base/core/jni/ |
android_net_NetUtils.cpp | 30 int ifc_set_default_route(const char *ifname, uint32_t gateway); 34 int ifc_configure(const char *ifname, in_addr_t ipaddr, in_addr_t netmask, in_addr_t gateway, in_addr_t dns1, in_addr_t dns2); 38 in_addr_t *gateway, 62 jfieldID gateway; member in struct:android::fieldIds 110 static jint android_net_utils_setDefaultRoute(JNIEnv* env, jobject clazz, jstring ifname, jint gateway) 115 result = ::ifc_set_default_route(nameStr, gateway); 153 in_addr_t ipaddr, gateway, mask, dns1, dns2, server; local 157 result = ::dhcp_do_request(nameStr, &ipaddr, &gateway, &mask, 162 env->SetIntField(info, dhcpInfoFieldIds.gateway, gateway); [all...] |
/system/core/nexus/ |
DhcpListener.cpp | 65 struct in_addr ipaddr, netmask, gateway, broadcast, dns1, dns2; local 76 if (!inet_aton(strsep(&next, ":"), &gateway)) { 77 LOGW("Malformatted gateway specified"); 86 &broadcast, &gateway, &dns1, &dns2);
|
OpenVpnController.cpp | 55 if (!mPropMngr->get("vpn.gateway", tmp, sizeof(tmp))) { 56 LOGE("Error reading property 'vpn.gateway' (%s)", strerror(errno));
|
DhcpClient.cpp | 40 int ifc_set_default_route(const char *ifname, uint32_t gateway); 44 int ifc_configure(const char *ifname, in_addr_t ipaddr, in_addr_t netmask, in_addr_t gateway, in_addr_t dns1, in_addr_t dns2); 48 in_addr_t *gateway,
|
/cts/tests/tests/net/src/android/net/cts/ |
DhcpInfoTest.java | 45 String expectedDefault = "ipaddr 0.0.0.0 gateway 0.0.0.0 netmask 0.0.0.0 dns1 0.0.0.0 " 52 String expected = "ipaddr " + STR_ADDR1 + " gateway " + STR_ADDR2 + " netmask " 62 dhcpInfo.gateway = ipToInteger(STR_ADDR2);
|
/external/kernel-headers/original/linux/ |
route.h | 34 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ 52 #define RTF_GATEWAY 0x0002 /* destination is a gateway */
|
/frameworks/base/telephony/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 */ 167 * was from an email gateway. Returns null if originating address 193 * an email gateway. Returns null if message body unavailable. 221 * @return true if this message came through an email gateway and email 229 * @return if isEmail() is true, body of the email sent through the gateway. 238 * the gateway. null otherwise 367 * Try to parse this message as an email gateway message 371 * nature of the gateway, the destination/origination address is either 373 * TP-OA/TP-DA field contains a generic gateway address and the to/fro [all...] |
/system/core/libnetutils/ |
dhcp_utils.c | 64 in_addr_t *gateway, 82 snprintf(prop_name, sizeof(prop_name), "%s.%s.gateway", DHCP_PROP_NAME_PREFIX, interface); 84 *gateway = addr.s_addr; 86 *gateway = 0; 124 in_addr_t *gateway, 168 fill_ip_info(interface, ipaddr, gateway, mask, dns1, dns2, server, lease);
|
ifc_utils.c | 317 * Return the address of the default gateway 360 * Sets the specified gateway as the default route for the named interface. 362 int ifc_set_default_route(const char *ifname, in_addr_t gateway) 368 addr.s_addr = gateway; 369 if ((result = ifc_create_default_route(ifname, gateway)) < 0) { 401 in_addr_t gateway, 424 if (ifc_create_default_route(ifname, gateway)) { 425 printerr("failed to set default route %s: %s\n", ipaddr_to_string(gateway), strerror(errno));
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.sample-natt | 29 # To keep the NAT-mappings on your NAT gateway, there must be 42 # 172.16.0.1 and 172.16.1.1, where the first gateway is behind 75 # regardless of whether there is a NAT gateway between them
|
/external/dhcpcd/ |
if-linux.c | 322 const struct in_addr *gateway, int metric, int action) 364 if (gateway->s_addr == INADDR_ANY || 365 (gateway->s_addr == destination->s_addr && 380 /* If destination == gateway then don't add the gateway */ 381 if (destination->s_addr != gateway->s_addr || 384 &gateway->s_addr, sizeof(gateway->s_addr));
|
/bionic/libc/kernel/common/linux/ |
icmp.h | 67 __u32 gateway; member in union:icmphdr::__anon229
|