HomeSort by relevance Sort by last modified time
    Searched defs:tunnel (Results 1 - 13 of 13) sorted by null

  /bionic/libc/kernel/common/linux/
if_pppolac.h 30 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon322
  /external/kernel-headers/original/linux/
if_pppolac.h 29 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon7935
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
if_pppolac.h 25 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon28517
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
if_pppolac.h 25 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon29304
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 87 int tunnel = socket(AF_INET6, SOCK_DGRAM, 0); local
89 setsockopt(tunnel, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof(flag));
91 setsockopt(tunnel, IPPROTO_IPV6, IPV6_V6ONLY, &flag, sizeof(flag));
100 while (bind(tunnel, (sockaddr *)&addr, sizeof(addr))) {
112 int n = recvfrom(tunnel, packet, sizeof(packet), 0,
121 connect(tunnel, (sockaddr *)&addr, addrlen);
122 return tunnel;
187 // Wait for a tunnel.
188 int tunnel; local
189 while ((tunnel = get_tunnel(argv[2], argv[3])) != -1)
    [all...]
  /external/qemu/target-i386/
hax-i386.h 34 struct hax_tunnel *tunnel; member in struct:hax_vcpu_state
  /external/iproute2/doc/
ip-cref.tex 119 \item \verb|tunnel| --- tunnel over IP
    [all...]
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 95 // tries to recreate the tunnel without shutting down everything.
100 // We try to create the tunnel for several times. The better way
133 DatagramChannel tunnel = null; local
136 // Create a DatagramChannel as the VPN tunnel.
137 tunnel = DatagramChannel.open();
139 // Protect the tunnel before connecting to avoid loopback.
140 if (!protect(tunnel.socket())) {
141 throw new IllegalStateException("Cannot protect the tunnel");
145 tunnel.connect(server);
148 // writing. Here we put the tunnel into non-blocking mode
    [all...]
  /external/chromium/net/http/
http_proxy_client_socket_pool.h 50 bool tunnel);
69 bool tunnel() const { return tunnel_; } function in class:net::HttpProxySocketParams
95 // HttpProxyConnectJob optionally establishes a tunnel through the proxy
146 // Begins the tcp connection and the optional Http proxy tunnel. If the
150 // that the tunnel needs authentication credentials, the socket will be
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.cc 42 const std::string NS_TUNNEL("http://www.google.com/talk/tunnel");
45 const std::string CN_TUNNEL("tunnel");
157 TunnelSession* tunnel = NULL; local
162 tunnel = *it;
166 ASSERT(tunnel != NULL);
173 return tunnel->GetStream();
186 TunnelSession* tunnel = MakeTunnelSession(session, data->thread, local
188 sessions_.push_back(tunnel);
191 data->stream = tunnel->GetStream();
  /external/mtpd/
l2tp.c 196 /* We only handle packets in our tunnel. */
362 .local = {.tunnel = local_tunnel, .session = local_session},
363 .remote = {.tunnel = remote_tunnel, .session = remote_session},
414 uint16_t tunnel = 0; local
421 /* Here is the fun part. We always try to protect our tunnel and session
426 if (get_attribute_u16(ASSIGNED_TUNNEL, &tunnel) && tunnel &&
428 remote_tunnel = tunnel;
436 log_print(DEBUG, "Received SCCRP without %s", tunnel ?
437 "valid challenge response" : "assigned tunnel");
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.c 173 { RADIUS_ATTR_TUNNEL_TYPE, "Tunnel-Type", RADIUS_ATTR_HEXDUMP },
174 { RADIUS_ATTR_TUNNEL_MEDIUM_TYPE, "Tunnel-Medium-Type",
180 { RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID, "Tunnel-Private-Group-Id",
1163 int type; /* Tunnel-Type */
1164 int medium_type; /* Tunnel-Medium-Type */
1170 * radius_msg_get_vlanid - Parse RADIUS attributes for VLAN tunnel information
1172 * Returns: VLAN ID for the first tunnel configuration of -1 if none is found
1176 struct radius_tunnel_attrs tunnel[RADIUS_TUNNEL_TAGS], *tun; local
1183 os_memset(&tunnel, 0, sizeof(tunnel));
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 212 { RADIUS_ATTR_TUNNEL_TYPE, "Tunnel-Type", RADIUS_ATTR_HEXDUMP },
213 { RADIUS_ATTR_TUNNEL_MEDIUM_TYPE, "Tunnel-Medium-Type",
215 { RADIUS_ATTR_TUNNEL_PASSWORD, "Tunnel-Password",
221 { RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID, "Tunnel-Private-Group-Id",
1200 int type; /* Tunnel-Type */
1201 int medium_type; /* Tunnel-Medium-Type */
1207 * radius_msg_get_vlanid - Parse RADIUS attributes for VLAN tunnel information
1209 * Returns: VLAN ID for the first tunnel configuration of -1 if none is found
1213 struct radius_tunnel_attrs tunnel[RADIUS_TUNNEL_TAGS], *tun; local
1220 os_memset(&tunnel, 0, sizeof(tunnel))
    [all...]

Completed in 384 milliseconds