Searched refs:expires_in (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-oauth2/
H A Doauth2-refresh.c29 if (strcasecmp(field->name, "expires_in") == 0) {
30 uint32_t expires_in = 0; local
31 if (str_to_uint32(field->value, &expires_in) < 0) {
34 "Malformed number '%s' in expires_in",
38 res->expires_at = ioloop_time + expires_in;
H A Doauth2-token-validate.c43 if (strcasecmp(field->name, "expires_in") == 0) {
44 uint32_t expires_in = 0; local
45 if (str_to_uint32(field->value, &expires_in) < 0) {
47 res.error = "Malformed number in expires_in";
49 res.expires_at = ioloop_time + expires_in;

Completed in 173 milliseconds