Lines Matching refs:certpl
1679 cert_t **certpl; local
1685 certpl = &iph1->cert;
1688 certpl = &iph1->cert_p;
1723 *certpl = oakley_newcert();
1724 if (!*certpl) {
1729 (*certpl)->pl = vmalloc(cert->l + 1);
1730 if ((*certpl)->pl == NULL) {
1733 oakley_delcert(*certpl);
1734 *certpl = NULL;
1737 memcpy((*certpl)->pl->v + 1, cert->v, cert->l);
1738 (*certpl)->pl->v[0] = iph1->rmconf->certtype;
1739 (*certpl)->type = iph1->rmconf->certtype;
1740 (*certpl)->cert.v = (*certpl)->pl->v + 1;
1741 (*certpl)->cert.l = (*certpl)->pl->l - 1;
1744 plogdump(LLV_DEBUG, (*certpl)->pl->v, (*certpl)->pl->l);