We are building custom tunnel provider on iphone,but it did not call
NETunnelProviderSession *session = (NETunnelProviderSession*) manager.connection;
NSDictionary *options = @{@"serverAddress": @"114.67.29.206"};
NSError *err;
[session startTunnelWithOptions:options andReturnError:&err];
Are these the
.entitlements file or the output from
codesign? They look like the former (because they’re missing a bunch of keys that I’d normally expect to see in the output from codesign), which is not good because you
really need to check the entitlements of the built binary. Take another look at
Debugging Entitlement Issues.
It’d also be helpful if you answered the other questions from my previous post.
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"