Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for http3 (0.06 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. 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)
  3. 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)
  4. pkg/test/echo/proto/echo.pb.go

    	// Method for the request. Valid only for HTTP
    	Method string `protobuf:"bytes,9,opt,name=method,proto3" json:"method,omitempty"`
    	// If true, requests will be sent using h2c prior knowledge
    	Http2 bool `protobuf:"varint,7,opt,name=http2,proto3" json:"http2,omitempty"`
    	// If true, requests will be sent using http3
    	Http3 bool `protobuf:"varint,15,opt,name=http3,proto3" json:"http3,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      // NONE means requests should be forwarded as-is, without tunneling.
      NONE = 0;
      // HBONE means requests should be tunneled over HTTP.
      // This does not dictate HTTP/1.1 vs HTTP/2; ALPN should be used for that purpose.
      HBONE = 1;
      // Future options may include things like QUIC/HTTP3, etc.
    }
    
    // ApplicationProtocol specifies a workload  (application or gateway) can
    // consume tunnel information.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    		scheme := redirect.Scheme
    		if scheme == "" {
    			if isTLS {
    				scheme = "https"
    			} else {
    				scheme = "http"
    			}
    		}
    		// Do not put explicit :80 or :443 when its http/https
    		if action.Redirect.PortRedirect == 80 && scheme == "http" {
    			action.Redirect.PortRedirect = 0
    		}
    		if action.Redirect.PortRedirect == 443 && scheme == "https" {
    			action.Redirect.PortRedirect = 0
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    	// Values are expected to be a CSV list, sorted by preference, of protocols supported.
    	// Currently supported values:
    	// * "http": indicates tunneling over HTTP over TCP. HTTP/2 vs HTTP/1.1 may be supported by ALPN negotiation.
    	// Planned future values:
    	// * "http3": indicates tunneling over HTTP over QUIC. This is distinct from "http", since we cannot do ALPN
    	//   negotiation for QUIC vs TCP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	TunnelProtocol_NONE TunnelProtocol = 0
    	// HBONE means requests should be tunneled over HTTP.
    	// This does not dictate HTTP/1.1 vs HTTP/2; ALPN should be used for that purpose.
    	TunnelProtocol_HBONE TunnelProtocol = 1 // Future options may include things like QUIC/HTTP3, etc.
    )
    
    // Enum value maps for TunnelProtocol.
    var (
    	TunnelProtocol_name = map[int32]string{
    		0: "NONE",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. docs/ru/docs/deployment/https.md

    Обычной практикой является иметь **одну программу/HTTP-сервер** запущенную на сервере (машине, хосте и т.д.) и **ответственную за всю работу с HTTPS**:
    
    * получение **зашифрованных HTTPS-запросов**
    * отправка **расшифрованных HTTP запросов** в соответствующее HTTP-приложение, работающее на том же сервере (в нашем случае, это приложение **FastAPI**)
    * получение **HTTP-ответа** от приложения
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 16:22:47 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/https.md

        * Die Inhalte sind **verschlüsselt**, auch wenn sie mit dem **HTTP-Protokoll** gesendet werden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top