Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,052 for tunnel (0.31 sec)

  1. staging/src/k8s.io/api/certificates/v1/types.go

    	//  "cert sign", "crl sign", "encipher only", "decipher only", "any",
    	//  "server auth", "client auth",
    	//  "code signing", "email protection", "s/mime",
    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    	//  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/net/interface_linux.go

    	ifi := &Interface{Index: int(ifim.Index), Flags: linkFlags(ifim.Flags)}
    	for _, a := range attrs {
    		switch a.Attr.Type {
    		case syscall.IFLA_ADDRESS:
    			// We never return any /32 or /128 IP address
    			// prefix on any IP tunnel interface as the
    			// hardware address.
    			switch len(a.Value) {
    			case IPv4len:
    				switch ifim.Type {
    				case sysARPHardwareIPv4IPv4, sysARPHardwareGREIPv4, sysARPHardwareIPv6IPv4:
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{- if eq (index .ProxyConfig.ProxyMetadata "ISTIO_META_ENABLE_HBONE") "true" }}
        networking.istio.io/tunnel: {{ index .ObjectMeta.Labels `networking.istio.io/tunnel` | default "http"  | quote }}
        {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		var targetWaypoint *Waypoint
    		if instancedWaypoint := fetchWaypointForInstance(ctx, Waypoints, p.ObjectMeta); instancedWaypoint != nil {
    			// we're an instance of a waypoint, set inbound tunnel info
    			appTunnel = &workloadapi.ApplicationTunnel{
    				Protocol: instancedWaypoint.DefaultBinding.Protocol,
    				Port:     instancedWaypoint.DefaultBinding.Port,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        }
    
        /**
         * Respond to `CONNECT` requests until a non-tunnel response is peeked. Returns true if further
         * calls should be attempted on the socket.
         */
        @Throws(IOException::class, InterruptedException::class)
        private fun processTunnelRequests(): Boolean {
          if (!dispatcher.peek().inTunnel) return true // No tunnel requests.
    
          val source = raw.source().buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    				SanType: tls.SubjectAltNameMatcher_URI,
    				Matcher: uriSanMatcher,
    			})
    		}
    	}
    	// Compliance for Envoy tunnel upstreams.
    	sec_model.EnforceCompliance(ctx)
    	return &cluster.Cluster{
    		Name:                          ConnectOriginate,
    		ClusterDiscoveryType:          &cluster.Cluster_Type{Type: cluster.Cluster_ORIGINAL_DST},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    		"Port to which all inbound TCP traffic to the pod/VM should be redirected to.",
    		&cfg.InboundCapturePort)
    
    	flag.BindEnv(fs, constants.InboundTunnelPort, "e",
    		"Specify the istio tunnel port for inbound tcp traffic.",
    		&cfg.InboundTunnelPort)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

         *
         * When a new connection is received, all in-tunnel responses are served before the connection is
         * upgraded to HTTPS or HTTP/2.
         */
        fun inTunnel() =
          apply {
            removeHeader("Content-Length")
            inTunnel = true
          }
    
        /**
         * Adds an HTTP 1xx response to precede this response. Note that this response's
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	AmbientWaypointForTrafficTypeLabel = "istio.io/waypoint-for"
    
    	// AmbientWaypointInboundBinding has the format `<protocol>` or `<protocol>/<port>`. If the waypoint is
    	// captured by a zTunnel, the zTunnel  will send traffic to the specified port with tunnel information
    	// such as source/destination addresses, identity and HBONE target host using the specified protocol.
    	AmbientWaypointInboundBinding = "ambient.istio.io/waypoint-inbound-binding"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tests/integration/pilot/tunneling_test.go

    		if strings.Contains(logs.String(), expectedLog) {
    			expectedTunnelLogFound = true
    			break
    		}
    	}
    	if !expectedTunnelLogFound {
    		return fmt.Errorf("failed to find expected tunnel log in logs of %s", target.ServiceName())
    	}
    	return nil
    }
    
    func applyForwardProxyConfigMaps(ctx framework.TestContext, externalNs string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top