Beispiel #1
0
 public VpnRedialer(string vpnInterface, string vpnIp, string user, string password, string netInterface = null)
 {
     VpnInterface = vpnInterface;
     VpnIp        = vpnIp;
     Account      = user;
     Password     = password;
     NetInterface = netInterface;
     _util        = new VpnUtils(vpnIp, vpnInterface, user, password);
 }
Beispiel #2
0
 public VpnRedialer(string interface1, string vpnIp, string user, string password, string netInterface = null)
 {
     _util        = new VpnUtils(vpnIp, interface1, user, password);
     NetInterface = netInterface;
 }