handleNewFlow(_:)
Handle a new flow of network data.
Declaration
func handleNewFlow(_ flow: NEAppProxyFlow) -> BoolParameters
- flow:
The new Neappproxyflow object. If the App Proxy Provider decides to proxy the flow, it should create a reference to the flow in its data structures.
Mentioned in
Return Value
Return true to indicate that the App Proxy Provider will handle the flow. Return false to indicate that the flow should be closed.
Discussion
This method is called by the system whenever an app which matches the current App Proxy configuration’s app rules opens a new network connection.
NEAppProxyProvider subclasses must override this method.
New flows are initially in an unopened state. The App Proxy Provider should take whatever steps are necessary to ready itself to handle the flow data and then open the flow.