Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TransportProtocolTCP (0.22 sec)

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

    		// to make testing a little easier.
    		transportToServers := map[istionetworking.TransportProtocol]map[model.ServerPort]*model.MergedServers{
    			istionetworking.TransportProtocolTCP:  mergedGateway.MergedServers,
    			istionetworking.TransportProtocolQUIC: mergedGateway.MergedQUICTransportServers,
    		}
    
    		for transport, gwServers := range transportToServers {
    			if gwServers == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    		}
    		return model.VirtualInboundListenerName
    	}
    	// Everything else derived from bind/port
    	return getListenerName(cc.bind, int(cc.port.TargetPort), istionetworking.TransportProtocolTCP)
    }
    
    // ToFilterChainMatch builds the FilterChainMatch for the config
    func (cc inboundChainConfig) ToFilterChainMatch(opt FilterChainMatchOptions) *listener.FilterChainMatch {
    	match := &listener.FilterChainMatch{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util.go

    	}, nil
    }
    
    // BuildAddress returns a SocketAddress with the given ip and port or uds.
    func BuildAddress(bind string, port uint32) *core.Address {
    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    	}
    
    	return &core.Address{
    		Address: &core.Address_Pipe{
    			Pipe: &core.Pipe{
    				Path: strings.TrimPrefix(bind, model.UnixAddressPrefix),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top