mirror of
https://github.com/moparisthebest/SSLDroid
synced 2024-11-10 11:05:05 -05:00
Check certificate expiration while saving the tunnel details
Signed-off-by: Balint Kovacs <blint@blint.hu>
This commit is contained in:
parent
26685aa5d7
commit
6010416325
@ -82,6 +82,9 @@ public class SSLDroidGui extends ListActivity {
|
||||
case R.id.readlogs:
|
||||
readLogs();
|
||||
return true;
|
||||
//case R.id.provision:
|
||||
// getProvisioning();
|
||||
// return true;
|
||||
}
|
||||
return super.onOptionsItemSelected(item);
|
||||
}
|
||||
@ -109,6 +112,11 @@ public class SSLDroidGui extends ListActivity {
|
||||
startActivity(i);
|
||||
}
|
||||
|
||||
private void getProvisioning() {
|
||||
Intent i = new Intent(this, SSLDroidProvisioning.class);
|
||||
startActivity(i);
|
||||
}
|
||||
|
||||
// ListView and view (row) on which was clicked, position and
|
||||
@Override
|
||||
protected void onListItemClick(ListView l, View v, int position, long id) {
|
||||
|
Loading…
Reference in New Issue
Block a user