Re: [android-developers] VpnService basic questions

2012-05-11 Thread Stigi
Are you sure that it is whatever you code yourself? Because right here: http://developer.android.com/sdk/android-4.0-highlights.html if I under it stand right, it is said that VpnService supports only L2TP and IPSec protocols. On the other hand, if I am wrong, could you give us a hint how to

Re: [android-developers] VpnService basic questions

2012-05-11 Thread Mark Murphy
On Fri, May 11, 2012 at 1:10 PM, Stigi zale...@gmail.com wrote: Are you sure that it is whatever you code yourself? Because right here: http://developer.android.com/sdk/android-4.0-highlights.html if I under it stand right, it is said that VpnService supports only L2TP and IPSec protocols.

Re: [android-developers] VpnService basic questions

2012-05-11 Thread Robert Greenwalt
I think the purpose of those classes is to let you create your own userspace vpn client type. It basically lets you use tun/tap interfaces to intercept all network traffic, wrap it in your vpn proto of choice and send it to your vpn endpoint. It does this while making it clear to the user what's

[android-developers] VpnService basic questions

2012-03-20 Thread mjl3434
There are two new classes added in ICS: VpnService and VpnService.Builder. I want to know if these classes would be useful for my goal of developing an app that has it's own UI and connects to a VPN endpoint with IPSec VPN (or maybe even SSL VPN). Unfortunately, the documentation doesn't really

Re: [android-developers] VpnService basic questions

2012-03-20 Thread Mark Murphy
On Mon, Mar 19, 2012 at 6:23 PM, mjl3434 larw...@gmail.com wrote: There are two new classes added in ICS: VpnService and VpnService.Builder. I want to know if these classes would be useful for my goal of developing an app that has it's own UI and connects to a VPN endpoint with IPSec VPN (or