/external/iptables/extensions/ |
libxt_policy.c | 36 "[!] --mode mode match mode (transport/tunnel)\n" 37 "[!] --tunnel-src addr/mask match tunnel source\n" 38 "[!] --tunnel-dst addr/mask match tunnel destination\n" 51 {.name = "tunnel-src", .id = O_TUNNELSRC, .type = XTTYPE_HOSTMASK, 53 {.name = "tunnel-dst", .id = O_TUNNELDST, .type = XTTYPE_HOSTMASK, 86 if (strcmp(s, "tunnel") == 0) 126 "policy match: double --tunnel-src option"); 136 "policy match: double --tunnel-dst option") [all...] |
/external/kernel-headers/original/linux/ |
if_pppolac.h | 29 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon19987
|
if_pppol2tp.h | 24 /* Structure used to connect() the socket to a particular tunnel UDP 38 /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
|
/external/ipsec-tools/src/libipsec/ |
test-policy.c | 65 { 1, "in ipsec ah/tunnel" }, 67 { 1, "out ipsec ah/tunnel/" }, 69 { 0, "in ipsec esp/tunnel/::1-::2" }, 70 { 1, "in ipsec esp/tunnel/10.0.0.1-::2" }, 71 { 0, "in ipsec esp/tunnel/::1-::2/require" }, 74 { 1, "in ipsec ah/transport esp/tunnel" }, 75 { 0, "in ipsec ah/transport esp/tunnel/::1-::1" }, 78 esp / tunnel / ::1-::2" }, 80 ah/transport/::1-::2 esp/tunnel/::3-::4/use ah/transport/::5-::6/require 81 ah/transport/::1-::2 esp/tunnel/::3-::4/use ah/transport/::5-::6/requir [all...] |
/external/tcpdump/ |
print-radius.c | 32 * "RADIUS Accounting Modifications for Tunnel Protocol Support" 35 * "RADIUS Attributes for Tunnel Protocol Support" 250 "Tunnel-Start", 251 "Tunnel-Stop", 252 "Tunnel-Reject", 253 "Tunnel-Link-Start", 254 "Tunnel-Link-Stop", 255 "Tunnel-Link-Reject", 288 /* Tunnel-Type Attribute standard values */ 304 /* Tunnel-Medium-Type Attribute standard values * [all...] |
/external/apache-http/src/org/apache/http/conn/ |
ManagedClientConnection.java | 123 * Indicates that a tunnel to the target has been established. 130 * This is not the case anymore, you can establish a tunnel without 133 * @param secure <code>true</code> if the tunnel should be considered 145 * Indicates that a tunnel to an intermediate proxy has been established. 152 * @param next the proxy to which the tunnel was established. 154 * the tunnel was established, but the new end point 155 * of the tunnel. The tunnel does <i>not</i> yet 157 * to indicate an end-to-end tunnel.
|
/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/chromium_org/third_party/libjingle/source/talk/session/tunnel/ |
tunnelsessionclient.cc | 42 const char NS_TUNNEL[] = "http://www.google.com/talk/tunnel"; 45 const char CN_TUNNEL[] = "tunnel"; 161 TunnelSession* tunnel = NULL; local 166 tunnel = *it; 170 ASSERT(tunnel != NULL); 177 return tunnel->GetStream(); 195 TunnelSession* tunnel = MakeTunnelSession(session, data->thread, local 197 sessions_.push_back(tunnel); 199 data->stream = tunnel->GetStream();
|
tunnelsessionclient_unittest.cc | 38 #include "talk/session/tunnel/tunnelsessionclient.h" 82 // Create the tunnel and set things in motion. 140 // Accept the tunnel when it arrives and wire up the stream. 152 // tunnel. All data has been read out at this point. 177 // Spool from the tunnel into recv_stream. 191 // Spool from send_stream into the tunnel. Back up if we get flow controlled.
|
/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
|
http_proxy_client_socket.h | 38 // by the time Connect() is called. If tunnel is true then on Connect() 39 // this socket will establish an Http tunnel. 47 bool tunnel,
|
http_proxy_client_socket_pool.cc | 39 bool tunnel) 46 http_auth_cache_(tunnel ? http_auth_cache : NULL), 47 http_auth_handler_factory_(tunnel ? http_auth_handler_factory : NULL), 48 tunnel_(tunnel) { 212 if (params_->tunnel()) { 264 if (using_spdy_ && params_->tunnel()) 288 params_->tunnel(), 317 DCHECK(params_->tunnel());
|
/external/chromium_org/net/http/ |
http_proxy_client_socket_pool.h | 54 bool tunnel); 73 bool tunnel() const { return tunnel_; } function in class:net::HttpProxySocketParams 94 // 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
|
http_proxy_client_socket.h | 38 // by the time Connect() is called. If tunnel is true then on Connect() 39 // this socket will establish an Http tunnel. 47 bool tunnel,
|
/external/iproute2/ip/ |
ipl2tp.c | 63 int tunnel:1; member in struct:l2tp_parm 229 printf("Tunnel %u, encap %s\n", 235 printf(" Peer tunnel %u\n", 247 printf("Session %u in tunnel %u\n", 249 printf(" Peer session %u, tunnel %u\n", 486 fprintf(stderr, "Usage: ip l2tp add tunnel\n"); 496 fprintf(stderr, " ip l2tp del tunnel tunnel_id ID\n"); 498 fprintf(stderr, " ip l2tp show tunnel [ tunnel_id ID ]\n"); 524 fprintf(stderr, "Unknown tunnel encapsulation.\n"); 608 } else if (strcmp(*argv, "tunnel") == 0) [all...] |
/external/apache-http/src/org/apache/http/conn/routing/ |
HttpRouteDirector.java | 63 /** Step: tunnel through proxy to target. */ 66 /** Step: tunnel through proxy to other proxy. */ 69 /** Step: layer protocol (over tunnel). */
|
RouteInfo.java | 67 * Protocols can only be layered over a tunnel to the target, or 140 * Obtains the tunnel type of this route. 163 * In the presence of proxies, only layering over an end-to-end tunnel 174 * In the presence of proxies, only layering over an end-to-end tunnel
|
/external/ipsec-tools/src/racoon/ |
localconf.h | 112 * the SPD in KAME expresses AH transport + ESP tunnel. 114 * But lots of implementation interprets AH tunnel + ESP 115 * tunnel in this case. racoon has changed the format,
|
/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/iproute2/man/man8/ |
ip-xfrm.8 | 131 .BR transport " | " tunnel " | " ro " | " in_trigger " | " beet 345 .BR transport " | " tunnel " | " ro " | " in_trigger " | " beet 432 .RB "IPsec tunnel mode (" tunnel "), " 435 .RB "IPsec ESP Bound End-to-End Tunnel Mode (" beet ")." 567 .RB "IPsec tunnel mode (" tunnel "), " 570 .RB "IPsec ESP Bound End-to-End Tunnel Mode (" beet ")."
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
LocalStreamForwarder.java | 17 * pair via the secure tunnel to another host (which may or may not be identical 48 * tunnel, you have to call the <code>flush</code> method of the
|
/external/iproute2/include/linux/ |
l2tp.h | 20 * @l2tp_conn_id: connection id of tunnel 29 __u32 l2tp_conn_id; /* Connection ID of tunnel */
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
phase1-down.sh | 69 -P out ipsec esp/tunnel/${LOCAL}-${REMOTE}/require; 71 -P in ipsec esp/tunnel/${REMOTE}-${LOCAL}/require;
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
TunnelRequest.java | 24 * HTTPS to an origin server. Everything in the tunnel request is sent 53 * If we're creating a TLS tunnel, send only the minimum set of headers.
|
/bionic/libc/kernel/common/linux/ |
if_pppolac.h | 30 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon412
|