HomeSort by: relevance | last modified time | path
    Searched defs:pollRep (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_client.c 211 * rep can have the expected response type, which during polling is pollRep.
263 * poll, which should yield a pollRep or the final response.
264 * On receiving a pollRep, which includes a checkAfter value, it return this
271 * Returns -1 on receiving pollRep if sleep == 0, setting the checkAfter value.
293 /* handle potential pollRep */
295 OSSL_CMP_POLLREPCONTENT *prc = prep->body->value.pollRep;
296 OSSL_CMP_POLLREP *pollRep = NULL;
305 pollRep = ossl_cmp_pollrepcontent_get0_pollrep(prc, rid);
306 if (pollRep == NULL)
309 if (!ASN1_INTEGER_get_int64(&check_after, pollRep->checkAfter))
    [all...]
cmp_msg.c 103 "POLLREP",
250 if ((msg->body->value.pollRep = sk_OSSL_CMP_POLLREP_new_null()) == NULL)
991 if (!sk_OSSL_CMP_POLLREP_push(msg->body->value.pollRep, prep))
1076 OSSL_CMP_POLLREP *pollRep = NULL;
1083 pollRep = sk_OSSL_CMP_POLLREP_value(prc, i);
1084 if (suitable_rid(pollRep->certReqId, rid))
1085 return pollRep;
cmp_local.h 594 * pollRep [26] PollRepContent --Polling response
703 * pollRep [26] PollRepContent --Polling response
705 OSSL_CMP_POLLREPCONTENT *pollRep; /* 26 */
  /src/crypto/external/bsd/openssl/dist/crypto/cmp/
cmp_client.c 240 * poll, which should yield a pollRep or finally a CertRepMessage in ip/cp/kup.
241 * On receiving a pollRep, which includes a checkAfter value, it return this
248 * Returns -1 on receiving pollRep if sleep == 0, setting the checkAfter value.
269 /* handle potential pollRep */
271 OSSL_CMP_POLLREPCONTENT *prc = prep->body->value.pollRep;
272 OSSL_CMP_POLLREP *pollRep = NULL;
281 pollRep = ossl_cmp_pollrepcontent_get0_pollrep(prc, rid);
282 if (pollRep == NULL)
285 if (!ASN1_INTEGER_get_int64(&check_after, pollRep->checkAfter)) {
298 if (pollRep->reason == NUL
    [all...]
cmp_msg.c 79 "GENM", "GENP", "ERROR", "CERTCONF", "POLLREQ", "POLLREP",
227 if ((msg->body->value.pollRep = sk_OSSL_CMP_POLLREP_new_null()) == NULL)
896 if (!sk_OSSL_CMP_POLLREP_push(msg->body->value.pollRep, prep))
982 OSSL_CMP_POLLREP *pollRep = NULL;
989 pollRep = sk_OSSL_CMP_POLLREP_value(prc, i);
990 if (suitable_rid(pollRep->certReqId, rid))
991 return pollRep;
cmp_local.h 538 * pollRep [26] PollRepContent --Polling response
647 * pollRep [26] PollRepContent --Polling response
649 OSSL_CMP_POLLREPCONTENT *pollRep; /* 26 */

Completed in 27 milliseconds