Class NEDNSProxyProvider

  • All Implemented Interfaces:
    NSObject

    public class NEDNSProxyProvider
    extends NEProvider
    [@interface] NEDNSProxyProvider The NEDNSProxyProvider class declares the programmatic interface for an object that implements the client side of a custom DNS proxy solution. NEDNSProxyProvider is part of NetworkExtension.framework
    • Constructor Detail

      • NEDNSProxyProvider

        protected NEDNSProxyProvider​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • cancelProxyWithError

        public void cancelProxyWithError​(NSError error)
        cancelProxyWithError: This function is called by proxy provider implementations to stop the proxy when a network error is encountered that renders the proxy no longer viable. Subclasses should not override this method.
        Parameters:
        error - An NSError object containing details about the error that the proxy provider implementation encountered.
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • handleNewFlow

        public boolean handleNewFlow​(NEAppProxyFlow flow)
        handleNewFlow: This function is called by the framework to deliver a new network data flow to the proxy provider implementation. Subclasses must override this method to perform whatever steps are necessary to ready the proxy to receive data from the flow. The proxy provider implementation indicates that the proxy is ready to handle flow data by calling -[NEAppProxyFlow openWithLocalEndpoint:completionHandler:] on the flow. If the proxy implementation decides to not handle the flow and instead terminate it, the subclass implementation of this method should return NO. If the proxy implementation decides to handle the flow, the subclass implementation of this method should return YES. In this case the proxy implementation is responsible for retaining the NEAppProxyFlow object.
        Parameters:
        flow - The new flow
        Returns:
        YES if the proxy implementation has retained the flow and intends to handle the flow data. NO if the proxy implementation has not retained the flow and will not handle the flow data. In this case the flow is terminated.
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • startProxyWithOptionsCompletionHandler

        public void startProxyWithOptionsCompletionHandler​(NSDictionary<java.lang.String,​?> options,
                                                           NEDNSProxyProvider.Block_startProxyWithOptionsCompletionHandler completionHandler)
        startProxyWithOptions:completionHandler: This function is called by the framework when a new proxy instance is being created. Subclasses must override this method to perform whatever steps are necessary to ready the proxy for handling flows of network data.
        Parameters:
        options - A dictionary containing keys and values passed by the provider's containing app. If the containing app did not start the proxy then this parameter will be nil.
        completionHandler - A block that must be called when the process of starting the proxy is complete. If the proxy cannot be started then the subclass' implementation of this method must pass a non-nil NSError object to this block. A value of nil passed to the completion handler indicates that the proxy was successfully started.
      • stopProxyWithReasonCompletionHandler

        public void stopProxyWithReasonCompletionHandler​(long reason,
                                                         NEDNSProxyProvider.Block_stopProxyWithReasonCompletionHandler completionHandler)
        stopProxyWithReason:completionHandler: This function is called by the framework when the proxy is being stopped. Subclasses must override this method to perform whatever steps are necessary to stop the proxy.
        Parameters:
        reason - An NEProviderStopReason indicating why the proxy is being stopped.
        completionHandler - A block that must be called when the proxy is completely stopped.
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • systemDNSSettings

        public NSArray<? extends NEDNSSettings> systemDNSSettings()
        [@property] systemDNSSettings The current system DNS settings. Use KVO to watch for changes.
      • version_static

        public static long version_static()
      • handleNewUDPFlowInitialRemoteEndpoint

        public boolean handleNewUDPFlowInitialRemoteEndpoint​(NEAppProxyUDPFlow flow,
                                                             NWEndpoint remoteEndpoint)
        handleNewUDPFlow:initialRemoteEndpoint: This function is called by the framework to deliver a new UDP data flow to the proxy provider implementation. Subclasses can override this method to perform whatever steps are necessary to ready the proxy to receive data from the flow. The proxy provider implementation indicates that the proxy is ready to handle flow data by calling -[NEAppProxyFlow openWithLocalEndpoint:completionHandler:] on the flow. If the proxy implementation decides to not handle the flow and instead terminate it, the subclass implementation of this method should return NO. If the proxy implementation decides to handle the flow, the subclass implementation of this method should return YES. In this case the proxy implementation is responsible for retaining the NEAppProxyUDPFlow object. The default implementation of this method calls -[NEAppProxyProvider handleNewFlow:] and returns its result.
        Parameters:
        flow - The new UDP flow
        remoteEndpoint - The initial remote endpoint provided by the proxied app when the flow was opened.
        Returns:
        YES if the proxy implementation has retained the flow and intends to handle the flow data. NO if the proxy implementation has not retained the flow and will not handle the flow data. In this case the flow is terminated.