Uses of Interface
org.mockserver.netty.proxy.TransparentProxyHandler.OriginalDestinationResolver
Packages that use TransparentProxyHandler.OriginalDestinationResolver
-
Uses of TransparentProxyHandler.OriginalDestinationResolver in org.mockserver.netty.proxy
Classes in org.mockserver.netty.proxy that implement TransparentProxyHandler.OriginalDestinationResolverModifier and TypeClassDescriptionclassA compositeTransparentProxyHandler.OriginalDestinationResolverthat tries an ordered chain of resolution strategies and returns the first non-null result.classResolves the original destination of a transparently intercepted TCP connection by reading the Linux conntrack table (/proc/net/nf_conntrack).classResolves the original destination of a transparently intercepted TCP connection by consulting theDnsIntentRegistry— a record of hostname-to-IP answers that MockServer's DNS server has handed out.classResolves the original destination of a transparently intercepted TCP connection by reading a pinned BPF hash map populated by an external eBPF program.classResolves the original destination of a transparently intercepted TCP connection by callinggetsockopt(fd, SOL_IP, SO_ORIGINAL_DST, ...)via JNA on Linux.classResolves the original destination of a transparently intercepted TCP connection using the TPROXY (IP_TRANSPARENT) mechanism.Constructors in org.mockserver.netty.proxy with parameters of type TransparentProxyHandler.OriginalDestinationResolverModifierConstructorDescriptionTransparentProxyHandler(Configuration configuration, MockServerLogger logger, TransparentProxyHandler.OriginalDestinationResolver resolver) Constructor with injectable resolver for unit testing.Constructor parameters in org.mockserver.netty.proxy with type arguments of type TransparentProxyHandler.OriginalDestinationResolverModifierConstructorDescriptionCompositeOriginalDestinationResolver(List<TransparentProxyHandler.OriginalDestinationResolver> strategies) Creates a composite resolver with the given ordered strategies.