clowwindy

Results 83 comments of clowwindy

@ebraminio I have already abandoned this project. No matter this is a leak or not, I can not solve it. I have been debugging node and V8 source for several...

~~Now that Apple allows anyone to run the code on their own devices, we don't have to publish the app on the App Store.~~ No, it still requires some entitlements...

There's no documentation at all at the moment. The headers of `NetworkExtension.framework` are public, so we can figure out how to implement the proxy. I guess we need to subclass...

I guess it works just like an app that controls IPSec VPN settings. Before calling `manager.connection.startVPNTunnelAndReturnError`, we should register our own protocol with ``` [NETunnelProviderManager loadAllFromPreferencesWithCompletionHandler:(void (^)(NSArray * __nullable managers,...

NEAppProxyProvider is actually per-app exclusive. Good news is we can use NEPacketTunnelProvider to create global VPN services. I'm writing to Apple to see if we can get permission for the...

Yes. You need to send an email to Apple to get the entitlements. And I'm waiting for their reply.

``` let newManager = NETunnelProviderManager() ``` You'll get a warning complaining about missing entitlements when you execute this line of code.