Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for http3 (0.09 sec)

  1. pkg/test/echo/server/forwarder/http.go

    	newConn := func() *http2.Transport {
    		if cfg.scheme == scheme.HTTPS {
    			return &http2.Transport{
    				TLSClientConfig: cfg.tlsConfig,
    				DialTLS: func(network, addr string, tlsConfig *tls.Config) (net.Conn, error) {
    					return hbone.TLSDialWithDialer(newDialer(cfg), network, addr, tlsConfig)
    				},
    			}
    		}
    
    		return &http2.Transport{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/test/echo/cmd/client/main.go

    		"message to expect (for tcp)")
    	rootCmd.PersistentFlags().StringVar(&method, "method", "", "method to use (for HTTP)")
    	rootCmd.PersistentFlags().BoolVar(&http2, "http2", false,
    		"send http requests as HTTP2 with prior knowledge")
    	rootCmd.PersistentFlags().BoolVar(&http3, "http3", false,
    		"send http requests as HTTP 3")
    	rootCmd.PersistentFlags().BoolVarP(&insecureSkipVerify, "insecure-skip-verify", "k", insecureSkipVerify,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. tests/integration/iop-integration-test-defaults-with-quic.yaml

                targetPort: 15021
                name: status-port
              - port: 80
                targetPort: 8080
                name: http2
              - port: 443
                targetPort: 8443
                name: https
              - port: 443
                targetPort: 8443
                name: http3
                protocol: UDP
      values:
        pilot:
          env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 718 bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.proto

      string url = 4;
      repeated Header headers = 5;
      string message = 6;
      // Method for the request. Valid only for HTTP
      string method = 9;
      // If true, requests will be sent using h2c prior knowledge
      bool http2 = 7;
      // If true, requests will be sent using http3
      bool http3 = 15;
      // If true, requests will not be sent until magic string is received
      bool serverFirst = 8;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. operator/pkg/translate/strategic_port_merge_test.go

    )
    
    var (
    	httpsPort = &v1.ServicePort{
    		Name:       "https",
    		Protocol:   v1.ProtocolTCP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	quicPort = &v1.ServicePort{
    		Name:       "http3-quic",
    		Protocol:   v1.ProtocolUDP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	httpPort = &v1.ServicePort{
    		Name:       "http-port",
    		Protocol:   v1.ProtocolTCP,
    		Port:       80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/config.go

    	}
    
    	return tlsConfig, nil
    }
    
    func checkRedirectFunc(req *proto.ForwardEchoRequest) func(req *http.Request, via []*http.Request) error {
    	if req.FollowRedirects {
    		return nil
    	}
    
    	return func(req *http.Request, via []*http.Request) error {
    		// Disable redirects
    		return http.ErrUseLastResponse
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/call.go

    		Headers:                 common.HTTPToProtoHeaders(opts.HTTP.Headers),
    		TimeoutMicros:           common.DurationToMicros(opts.Timeout),
    		Message:                 opts.Message,
    		ExpectedResponse:        opts.TCP.ExpectedResponse,
    		Http2:                   opts.HTTP.HTTP2,
    		Http3:                   opts.HTTP.HTTP3,
    		Method:                  opts.HTTP.Method,
    		ServerFirst:             opts.Port.ServerFirst,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. docs/works_with_okhttp.md

     * [okhttp-digest](https://github.com/rburgst/okhttp-digest): A digest authenticator for OkHttp.
     * [OkHttp Idling Resource](https://github.com/JakeWharton/okhttp-idling-resource): An Espresso IdlingResource for OkHttp.
     * [okhttp-client-mock](https://github.com/gmazzo/okhttp-client-mock): A simple OKHttp client mock, using a programmable request interceptor.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Protocol.kt

     *
     * ## Protocol vs Scheme
     *
     * Despite its name, [java.net.URL.getProtocol] returns the [scheme][java.net.URI.getScheme] (http,
     * https, etc.) of the URL, not the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word
     * *protocol* to identify how HTTP messages are framed.
     *
     * [ietf_alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
     */
    enum class Protocol(private val protocol: String) {
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    //	Multiple HTTP servers can exist on the same port and the code will combine all of them into
    //	one single RDS payload for http.<portNumber>
    //
    // HTTPS servers with TLS termination (i.e. envoy decoding the content, and making outbound http calls to backends)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top