mirror of
https://github.com/moparisthebest/SSLDroid
synced 2025-02-21 05:21:46 -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:
|
case R.id.readlogs:
|
||||||
readLogs();
|
readLogs();
|
||||||
return true;
|
return true;
|
||||||
|
//case R.id.provision:
|
||||||
|
// getProvisioning();
|
||||||
|
// return true;
|
||||||
}
|
}
|
||||||
return super.onOptionsItemSelected(item);
|
return super.onOptionsItemSelected(item);
|
||||||
}
|
}
|
||||||
@ -109,6 +112,11 @@ public class SSLDroidGui extends ListActivity {
|
|||||||
startActivity(i);
|
startActivity(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void getProvisioning() {
|
||||||
|
Intent i = new Intent(this, SSLDroidProvisioning.class);
|
||||||
|
startActivity(i);
|
||||||
|
}
|
||||||
|
|
||||||
// ListView and view (row) on which was clicked, position and
|
// ListView and view (row) on which was clicked, position and
|
||||||
@Override
|
@Override
|
||||||
protected void onListItemClick(ListView l, View v, int position, long id) {
|
protected void onListItemClick(ListView l, View v, int position, long id) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user