Lines Matching defs:expiry
1261 pos = os_strstr(cmd, " expiry=");
1772 char expiry[30];
1776 "DPP: Failed to generate expiry string");
1779 os_snprintf(expiry, sizeof(expiry),
1784 json_add_string(dppcon, "expiry", expiry);
2670 int dpp_key_expired(const char *timestamp, os_time_t *expiry)
2730 if (expiry)
2731 *expiry = utime;
2798 token = json_get_member(root, "expiry");
2801 "DPP: No expiry string found - connector does not expire");
2803 wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
4150 os_time_t *expiry, u8 *peer_key_hash)
4164 if (expiry)
4165 *expiry = 0;
4199 token = json_get_member(root, "expiry");
4202 "DPP: No expiry string found - connector does not expire");
4204 wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
4205 if (dpp_key_expired(token->string, expiry)) {