Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AcceptHttp_10 (0.13 sec)

  1. pilot/pkg/networking/core/listener.go

    	builder.inboundListeners = builder.buildWaypointInbound()
    	return builder
    }
    
    // if enableFlag is "1" indicates that AcceptHttp_10 is enabled.
    func enableHTTP10(enableFlag string) bool {
    	return enableFlag == "1"
    }
    
    type listenerBinding struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    	IdleTimeout string `json:"IDLE_TIMEOUT,omitempty"`
    
    	// HTTP10 indicates the application behind the sidecar is making outbound http requests with HTTP/1.0
    	// protocol. It will enable the "AcceptHttp_10" option on the http options for outbound HTTP listeners.
    	// Alpha in 1.1, based on feedback may be turned into an API or change. Set to "1" to enable.
    	HTTP10 string `json:"HTTP10,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    	}
    
    	if features.HTTP10 || enableHTTP10(lb.node.Metadata.HTTP10) {
    		httpOpts.connectionManager.HttpProtocolOptions = &core.Http1ProtocolOptions{
    			AcceptHttp_10: true,
    		}
    	}
    	h := lb.buildHTTPConnectionManager(httpOpts)
    
    	// Last filter must be router.
    	router := h.HttpFilters[len(h.HttpFilters)-1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    	}
    
    	if features.HTTP10 || enableHTTP10(lb.node.Metadata.HTTP10) {
    		httpOpts.connectionManager.HttpProtocolOptions = &core.Http1ProtocolOptions{
    			AcceptHttp_10: true,
    		}
    	}
    
    	return httpOpts
    }
    
    // buildInboundNetworkFiltersForHTTP builds the network filters that should be inserted before an HCM.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway.go

    	ph := GetProxyHeadersFromProxyConfig(proxyConfig, istionetworking.ListenerClassGateway)
    	httpProtoOpts := &core.Http1ProtocolOptions{}
    	if features.HTTP10 || enableHTTP10(node.Metadata.HTTP10) {
    		httpProtoOpts.AcceptHttp_10 = true
    	}
    	xffNumTrustedHops := uint32(0)
    
    	// Gateways do not use ProxyHeaders for XFCC as there is an existing field in gateway topology that is used instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    							Cert:    true,
    							Uri:     true,
    							Dns:     true,
    						},
    						ServerName: EnvoyServerName,
    						HttpProtocolOptions: &core.Http1ProtocolOptions{
    							AcceptHttp_10: true,
    						},
    						Proxy_100Continue: true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    					protocol: protocol.HTTP,
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top