Lines Matching full:certpl
1675 cert_t **certpl;
1681 certpl = &iph1->cert;
1684 certpl = &iph1->cert_p;
1719 *certpl = oakley_newcert();
1720 if (!*certpl) {
1725 (*certpl)->pl = vmalloc(cert->l + 1);
1726 if ((*certpl)->pl == NULL) {
1729 oakley_delcert(*certpl);
1730 *certpl = NULL;
1733 memcpy((*certpl)->pl->v + 1, cert->v, cert->l);
1734 (*certpl)->pl->v[0] = iph1->rmconf->certtype;
1735 (*certpl)->type = iph1->rmconf->certtype;
1736 (*certpl)->cert.v = (*certpl)->pl->v + 1;
1737 (*certpl)->cert.l = (*certpl)->pl->l - 1;
1740 plogdump(LLV_DEBUG, (*certpl)->pl->v, (*certpl)->pl->l);