Home | History | Annotate | Download | only in racoon

Lines Matching defs:new

255  * create new isakmp Phase 1 status record to handle isakmp in Phase1
262 /* create new iph1 */
281 * delete new isakmp Phase 1 status record to handle isakmp in Phase1
382 * create new isakmp Phase 1 status record to handle isakmp in Phase1
572 * create new isakmp Phase 2 status record to handle isakmp in Phase2
579 /* create new iph2 */
648 * delete new isakmp Phase 2 status record to handle isakmp in Phase2
682 * create new isakmp Phase 2 status record to handle isakmp in Phase2
811 * create new isakmp Phase 2 status record to handle isakmp in Phase2
817 struct contacted *new;
819 /* create new iph2 */
820 new = racoon_calloc(1, sizeof(*new));
821 if (new == NULL)
824 new->remote = dupsaddr(remote);
825 if (new->remote == NULL) {
828 racoon_free(new);
832 LIST_INSERT_HEAD(&ctdtree, new, chain);
936 struct recvdpkt *new = NULL;
943 new = racoon_calloc(1, sizeof(*new));
944 if (!new) {
950 new->hash = eay_md5_one(rbuf);
951 if (!new->hash) {
954 del_recvdpkt(new);
957 new->remote = dupsaddr(remote);
958 if (new->remote == NULL) {
961 del_recvdpkt(new);
964 new->local = dupsaddr(local);
965 if (new->local == NULL) {
968 del_recvdpkt(new);
971 new->sendbuf = vdup(sbuf);
972 if (new->sendbuf == NULL) {
975 del_recvdpkt(new);
979 new->retry_counter = lcconf->retry_counter;
980 new->time_send = 0;
981 new->created = time(NULL);
983 LIST_INSERT_HEAD(&rcptree, new, chain);
1084 * Get the new sainfo using values of the old one
1125 * XXX try tu find the new remote section to get the new check level ?