Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for listenerfilter (0.29 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    				continue
    			}
    			lis.ListenerFilters, applied = insertBeforeFunc(
    				lis.ListenerFilters,
    				func(e *listener.ListenerFilter) (bool, *listener.ListenerFilter) {
    					if listenerFilterMatch(e, lp) {
    						return true, proto.Clone(lp.Value).(*listener.ListenerFilter)
    					}
    					return false, nil
    				},
    			)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/filters/filters.go

    				},
    			}),
    		},
    	}
    	TLSInspector = &listener.ListenerFilter{
    		Name: wellknown.TLSInspector,
    		ConfigType: &listener.ListenerFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&tlsinspector.TlsInspector{}),
    		},
    	}
    	HTTPInspector = &listener.ListenerFilter{
    		Name: wellknown.HTTPInspector,
    		ConfigType: &listener.ListenerFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    	}
    	lb.authzBuilder = oldBuilder
    	accessLogBuilder.setListenerAccessLog(lb.push, lb.node, l, istionetworking.ListenerClassSidecarInbound)
    	l.ListenerFilters = append(l.ListenerFilters, xdsfilters.OriginalDestination)
    	// TODO: Exclude inspectors from some inbound ports.
    	l.ListenerFilters = append(l.ListenerFilters, populateListenerFilters(lb.node, l, true)...)
    	return []*listener.Listener{terminate, l}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/listener.go

    	IPMatcher = "type.googleapis.com/xds.type.matcher.v3.IPMatcher"
    )
    
    // ListenerFilter is used to pass filter information into listener based config writer print functions
    type ListenerFilter struct {
    	Address string
    	Port    uint32
    	Type    string
    	Verbose bool
    }
    
    // Verify returns true if the passed listener matches the filter fields
    func (l *ListenerFilter) Verify(listener *listener.Listener) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. pilot/test/xdstest/extract.go

    	for _, l := range rc {
    		res[l.Name] = l
    	}
    	return res
    }
    
    func ExtractListenerFilters(l *listener.Listener) map[string]*listener.ListenerFilter {
    	res := map[string]*listener.ListenerFilter{}
    	for _, lf := range l.ListenerFilters {
    		res[lf.Name] = lf
    	}
    	return res
    }
    
    func ExtractFilterChain(name string, l *listener.Listener) *listener.FilterChain {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    		}
    	}
    	l := &listener.Listener{
    		Name:              MainInternalName,
    		ListenerSpecifier: &listener.Listener_InternalListener{InternalListener: &listener.Listener_InternalListenerConfig{}},
    		ListenerFilters: []*listener.ListenerFilter{
    			xdsfilters.OriginalDestination,
    			// TODO: This may affect the data path due to the server-first protocols triggering a time-out. Need exception filter.
    			xdsfilters.HTTPInspector,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/proxyconfig.go

    					configdump.ClusterFilter{
    						FQDN:      host.Name(fqdn),
    						Port:      port,
    						Subset:    subset,
    						Direction: model.TrafficDirection(direction),
    					},
    					configdump.ListenerFilter{
    						Address: address,
    						Port:    uint32(port),
    						Type:    listenerType,
    						Verbose: verboseProxyConfig,
    					},
    					configdump.RouteFilter{
    						Name:    routeName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/none_lds_tcp.json

                          }
                        }
                      }
                    }
                  }
                }
              ]
            }
          ],
          "listener_filters": null
        },
        "127.0.0.1_2000": {
          "name": "127.0.0.1_2000",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "127.0.0.1",
                "PortSpecifier": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/none_lds_http.json

                          }
                        }
                      }
                    }
                  }
                }
              ]
            }
          ],
          "listener_filters": null
        },
        "127.0.0.1_15002": {
          "name": "127.0.0.1_15002",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    				clusterName:       "inbound|8888||",
    				port: model.ServiceInstancePort{
    					ServicePort: &model.Port{},
    				},
    			}
    
    			listenerFilters := NewListenerBuilder(cg.SetupProxy(nil), cg.PushContext()).buildInboundNetworkFilters(fcc)
    			tcp := &tcp.TcpProxy{}
    			listenerFilters[len(listenerFilters)-1].GetTypedConfig().UnmarshalTo(tcp)
    			if tcp.StatPrefix != tt.expectedStatPrefix {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top