Home | History | Annotate | Download | only in racoon

Lines Matching refs:cert

62 	vchar_t *cert = NULL;
105 "not supported multiple CERT RR.\n");
114 "not supported CERT RR type %d.\n", res->ci_type);
118 /* create cert holder */
119 cert = vmalloc(res->ci_certlen + 1);
120 if (cert == NULL) {
122 "failed to get cert buffer.\n");
125 cert->v[0] = type;
126 memcpy(&cert->v[1], res->ci_cert, res->ci_certlen);
128 plog(LLV_DEBUG, LOCATION, NULL, "created CERT payload:\n");
129 plogdump(LLV_DEBUG, cert->v, cert->l);
136 return cert;