Home | History | Annotate | Download | only in racoon

Lines Matching defs:new

191 	struct sainfo *new;
193 new = racoon_calloc(1, sizeof(*new));
194 if (new == NULL)
197 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT;
198 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX;
200 return new;
252 inssainfo(new)
253 struct sainfo *new;
258 LIST_INSERT_HEAD(&sitree, new, chain);
265 * insert our new sainfo section
270 npri = prisainfo(new);
281 LIST_INSERT_BEFORE(s, new, chain);
288 LIST_INSERT_AFTER(s, new, chain);
325 struct sainfoalg *new;
327 new = racoon_calloc(1, sizeof(*new));
328 if (new == NULL)
331 return new;
347 inssainfoalg(head, new)
349 struct sainfoalg *new;
356 a->next = new;
358 *head = new;