android: Increase lifetimes a bit

This should avoid clashes of soft and hard lifetimes even if the app is
not whitelisted.
This commit is contained in:
Tobias Brunner 2020-05-08 14:33:05 +02:00
parent a0d32a2d13
commit 5d01aaf91d
1 changed files with 3 additions and 3 deletions

View File

@ -754,13 +754,13 @@ static job_requeue_t initiate(private_android_service_t *this)
.unique = UNIQUE_REPLACE,
.rekey_time = 36000, /* 10h */
.jitter_time = 600, /* 10min */
.over_time = 600, /* 10min */
.over_time = 1800, /* 30min */
};
child_cfg_create_t child = {
.lifetime = {
.time = {
.life = 3600, /* 1h */
.rekey = 3000, /* 50min */
.life = 9000, /* 2.5h */
.rekey = 7200, /* 2h */
.jitter = 300 /* 5min */
},
},