| 47 | } |
| 48 | } |
| 49 | void VpnPlugin::Connect(VpnChannel const& channel) |
| 50 | { |
| 51 | try |
| 52 | { |
| 53 | ConnectCore(channel); |
| 54 | } |
| 55 | catch (std::exception const& ex) |
| 56 | { |
| 57 | channel.TerminateConnection(to_hstring(ex.what())); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | void VpnPlugin::ConnectCore(VpnChannel const& channel) |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected