Home | History | Annotate | Download | only in racoon

Lines Matching defs:new

1835 		"new acquire %s\n", spidx2str(&sp_out->spidx));
2886 struct secpolicy *new = NULL;
2923 new = newsp();
2924 if (new == NULL) {
2930 new->spidx.dir = xpl->sadb_x_policy_dir;
2931 new->id = xpl->sadb_x_policy_id;
2932 new->policy = xpl->sadb_x_policy_type;
2933 new->req = NULL;
2947 struct ipsecrequest **p_isr = &new->req;
2972 "failed to get new ipsecreq.\n");
3037 (*p_isr)->sp = new;
3069 &new->spidx);
3078 &new->spidx);
3086 new->spidx.sec_ctx.ctx_alg = ctx->sadb_x_ctx_alg;
3087 new->spidx.sec_ctx.ctx_doi = ctx->sadb_x_ctx_doi;
3088 new->spidx.sec_ctx.ctx_strlen = ctx->sadb_x_ctx_len;
3089 memcpy(new->spidx.sec_ctx.ctx_str,ctx + 1,ctx->sadb_x_ctx_len);
3093 inssp(new);
3097 if (new != NULL) {
3098 if (new->req != NULL)
3099 racoon_free(new->req);
3100 racoon_free(new);