• Home
  • Raw
  • Download

Lines Matching refs:spspec

101 	struct secprotospec *spspec;	/* the head is always current spec. */  member
1587 if (cur_rmconf->prhead->spspec == NULL
1590 cur_rmconf->prhead->spspec = cur_rmconf->inherited_from->prhead->spspec;
1925 struct secprotospec *spspec; variable
1927 spspec = newspspec();
1928 if (spspec == NULL)
1930 insspspec(spspec, &cur_rmconf->prhead);
2031 cur_rmconf->prhead->spspec->lifetime = $3 * $4;
2040 cur_rmconf->prhead->spspec->lifebyte = fix_lifebyte($3 * $4);
2041 if (cur_rmconf->prhead->spspec->lifebyte == 0)
2048 cur_rmconf->prhead->spspec->algclass[algclass_isakmp_dh] = $2;
2053 if (cur_rmconf->prhead->spspec->vendorid != VENDORID_GSSAPI) {
2057 if (cur_rmconf->prhead->spspec->gssid != NULL)
2058 racoon_free(cur_rmconf->prhead->spspec->gssid);
2059 cur_rmconf->prhead->spspec->gssid =
2061 STRDUP_FATAL(cur_rmconf->prhead->spspec->gssid);
2093 cur_rmconf->prhead->spspec->algclass[algclass_isakmp_enc] = doi;
2107 cur_rmconf->prhead->spspec->encklen = $3;
2109 cur_rmconf->prhead->spspec->encklen = defklen;
2112 cur_rmconf->prhead->spspec->algclass[algclass_isakmp_hash] = doi;
2115 cur_rmconf->prhead->spspec->algclass[algclass_isakmp_ameth] = doi;
2122 if (cur_rmconf->prhead->spspec->vendorid !=
2132 cur_rmconf->prhead->spspec->vendorid =
2227 insspspec(spspec, head) in insspspec() argument
2228 struct secprotospec *spspec; in insspspec()
2231 spspec->back = *head;
2233 if ((*head)->spspec != NULL)
2234 (*head)->spspec->prev = spspec;
2235 spspec->next = (*head)->spspec;
2236 (*head)->spspec = spspec;
2259 if (p->spspec == NULL) {
2264 for (s = p->spspec; s != NULL; s = s->next) {
2285 for (s = p->spspec; s->next != NULL; s = s->next)