Home | History | Annotate | Download | only in racoon

Lines Matching defs:notify

689  * 	HDR#*, HASH(4), notify
700 vchar_t *notify = NULL;
734 if (notify != NULL) {
740 notify = vmalloc(pa->len);
741 if (notify == NULL) {
743 "failed to get notify buffer.\n");
746 memcpy(notify->v, pa->ptr, notify->l);
777 my_hash = oakley_compute_hash1(iph2->ph1, iph2->msgid, notify);
824 if (notify != NULL)
825 vfree(notify);
1282 /* add a RESPONDER-LIFETIME notify payload if needed */
1501 * HDR#*, HASH(4), notify
1511 vchar_t *notify = NULL;
1529 notify = vmalloc(tlen);
1530 if (notify == NULL) {
1532 "failed to get notify buffer.\n");
1535 n = (struct isakmp_pl_n *)notify->v;
1544 myhash = oakley_compute_hash1(iph2->ph1, iph2->msgid, notify);
1551 + notify->l;
1567 /* add notify payload */
1568 memcpy(p, notify->v, notify->l);
1599 if (notify != NULL)
1600 vfree(notify);